NGUI中的Tween Position动画

Posted

tags:

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

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动画的主要内容,如果未能解决你的问题,请参考以下文章

PocketLibs—— 动画 tween.js

Unity NGUI TWEEN

android中的动画之变换动画(Tween Animation)

tween 缓动动画

详解tween.js 中文使用指南

使用Tween为相机设置动画