1、基礎介紹;2、基礎屬性oop
原文地址: http://blog.csdn.net/dingkun520wy/article/details/50923665動畫
1、基礎介紹spa
FadeTo:從當前透明度變到目標透明度.net
FadeFrom:從給定透明度變到原始透明度code
FadeUpdate:對象
相似於blog
FadeTo,在Update()方法或循環環境中調用。提供每幀改變屬性值的環境。不依賴於EasrType.事件
Fade只適用於GUITexture組件,GUIText組件,renderer組件和light組件.
2、基礎屬性ip
基礎屬性比較簡單直接上代碼get
- void Start () {
-
- Hashtable args = new Hashtable();
-
-
- args.Add("alpha", 0);
-
- args.Add("amount", 0);
-
- args.Add("includechildren",true);
-
- args.Add("namedcolorvalue", iTween.NamedValueColor._Color);
-
-
- args.Add("time", 10f);
-
- args.Add("delay", 0.1f);
-
-
- args.Add("easeType", iTween.EaseType.easeInOutExpo);
-
-
-
- args.Add("loopType", iTween.LoopType.pingPong);
-
-
-
- args.Add("onstart", "AnimationStart");
- args.Add("onstartparams", 5.0f);
-
-
- args.Add("onstarttarget", gameObject);
-
-
-
- args.Add("oncomplete", "AnimationEnd");
- args.Add("oncompleteparams", "end");
- args.Add("oncompletetarget", gameObject);
-
-
- args.Add("onupdate", "AnimationUpdate");
- args.Add("onupdatetarget", gameObject);
- args.Add("onupdateparams", true);
-
- iTween.FadeTo(btnBegin, args);
- }
-
-
-
- void AnimationStart(float f)
- {
- Debug.Log("start :" + f);
- }
-
- void AnimationEnd(string f)
- {
- Debug.Log("end : " + f);
-
- }
-
- void AnimationUpdate(bool f)
- {
- Debug.Log("update :" + f);
-
- }