Unity/Csharp/iTween
提供: 初心者エンジニアの簡易メモ
iTweenとは
オブジェクトを簡単い移動させるライブラリ
インストール
https://assetstore.unity.com/packages/tools/animation/itween-84
AssetStoreからDownload
数秒間で座標移動する
例:mcオブジェクト
GameObject gameObject = transform.Find ("mc").gameObject; iTween.MoveTo(gameObject, new Vector3(2f, 2f, 0), 2.0f);
数秒後に数秒間移動する
iTween.MoveTo (gameObject, iTween.Hash ("x", 3, "delay", 2, "time", 3));
ループ
iTween.MoveTo (gameObject, iTween.Hash ("x", 3, "delay", 2, "time", 3, "loopType", "loop"));
往復
iTween.MoveTo (gameObject, iTween.Hash ("x", 3, "delay", 2, "time", 3, "loopType", "pingpong"));