以下からダウンロード https://code.google.com/p/itween/ iTween.csをpluginsにドラック&ドロップ 以下のスクリプトを作成して対象のGameObjectにaddComponetする。 using UnityEngine; using System.Collections; public class ItweenSample : MonoBehaviour { public GameObject gameobject; Hashtable table = new Hashtable(); // ハッシュテーブルを用意 private void Start() { table.Add("x", 100); // xを10まで移動 table.Add("y", 50); // yを5まで移動 table.Add("time", 1.0f); // ト