1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

tips:Unityメモ:iTween

Last updated at Posted at 2015-06-28

iTween覚え書き。

Asset Store からインポート。

 iTween in Unity5

//使う
iTween.MoveBy(gameObject, new Vector3(x, y, z), move_time);


//Hashテーブルにパラメタをセットして使う事も出来る、らしい(未確認)
iTween.MoveBy(gameObject, hash_table);

//Hashテーブル、メモ
new Hashtable()
hash_talbe.add("各種キー", 値);
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?