您好,登錄后才能下訂單哦!
using UnityEngine;
using System.Collections;
public class MoveCube : MonoBehaviour
{
public GameObject targetGameObject;
public float time = 4f;
public iTween.EaseType easeType;
void Update ()
{
if (Input.GetMouseButtonDown (0)) {
//iTween.MoveTo(targetGameObject,new Vector3(4,4,0),time);
// Hashtable args=new Hashtable();
// args.Add("x",3);//只控制X的位置 前面是鍵 后面是指
// args.Add("y",5);
// args.Add("time",4); //運動時間4秒
// args.Add("delay",1);//延遲1秒
// args.Add("oncomplete","onupdatefunction");//監測MOVETO回調函數
// args.Add("looptype","pingpong");
Hashtable args = iTween.Hash ("x", 4, "time", 2, "easeType", easeType);
iTween.MoveTo (targetGameObject, args);
}
if (Input.GetMouseButtonDown (1)) {
Hashtable args = iTween.Hash ("x", 0, "time", 2, "easeType", easeType);
iTween.MoveTo (targetGameObject, args);
}
}
public void onupdatefunction ()
{
print ("執行了");
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。