首页 > 代码库 > Unity3d TweenPosition.Begin()的使用浅析

Unity3d TweenPosition.Begin()的使用浅析

欢迎来到unity学习、unity培训、unity企业培训教育专区,这里有很多U3D资源、U3D培训视频、U3D教程、U3D常见问题、U3D项目源码,我们致力于打造业内unity3d培训、学习第一品牌。

 当调用TweenPosition.Begin()时,gameObject会被自动挂上TweenPosition脚本

 

//让gameObject在20内移到坐标(4, 0, 0)

TweenPosition tween = TweenPosition.Begin(gameObject, 20, new Vector3(4, 0, 0));
tween.PlayForward();

 

//若想在中途停止移动

TweenPosition tween = gameObject.GetComponent<TweenPosition>();

tween.enabled = false;

就是这么简单。

 

更多精彩请点击 http://www.gopedu.com/

Unity3d TweenPosition.Begin()的使用浅析