iTween的简单用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iTween的简单用法相关的知识,希望对你有一定的参考价值。

iTween的简单用法

 1 using UnityEngine;
 2 using System.Collections;
 3 
 4 public class HelloiTween : MonoBehaviour {
 5 
 6     Hashtable lht = new Hashtable();
 7 
 8 
 9     // Use this for initialization
10     void Start()
11     {
12         lht.Add("x",3);
13         lht.Add("time",2);
14         lht.Add("delay",1);
15         lht.Add("looptype",iTween.LoopType.pingPong); 
16     }
17     
18     // Update is called once per frame
19     void Update () {
20 
21         if (Input.GetMouseButtonDown(0))
22         {
23             iTween.MoveTo(this.gameObject, new Vector3(3, 3, 3), 5f);
24             iTween.RotateTo(this.gameObject, new Vector3(0, 222, 0), 5f);
25         }
26         if (Input.GetMouseButtonDown(1))
27         {
28             iTween.MoveTo(this.gameObject, lht);
29         }
30         if (Input.GetMouseButtonDown(2))
31         {
32             iTween.MoveTo(this.gameObject, iTween.Hash("x",3,"time",2,"delay",1,"looptype",iTween.LoopType.pingPong));
33         }
34     }
35 }

以上是关于iTween的简单用法的主要内容,如果未能解决你的问题,请参考以下文章

unity中鼠标点击触发物体运动

Unity知识五:Unity中ITween的回调函数的使用

c_cpp 加载源图像固定用法(代码片段,不全)

unity3d 场景切换 时的渐隐渐显效果是怎么实现的啊!!

iTween Scale缩放

iTween