码迷,mamicode.com
首页 > 其他好文 > 详细

NGUI中的Tween Position动画

时间:2017-05-20 13:17:59      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:com   ide   update   get   play   gen   his   cti   component   

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Inventory : MonoBehaviour {

public static Inventory _instance;
private TweenPosition tween;//获取组件
void Awake() {
_instance = this;
tween = this.GetComponent<TweenPosition>();//获取组件
}
void Update () {

}

//需要播放的UI动画是从UI界面外移到UI界面里
public void Show() {
tween.PlayForward();//播放动画

}
public void Hide() {
tween.PlayReverse();//反向播放动画
}
}

NGUI中的Tween Position动画

标签:com   ide   update   get   play   gen   his   cti   component   

原文地址:http://www.cnblogs.com/panyuyi/p/6881886.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!