纳金网
标题:
类似于Itween的插件GoKit的研究
[打印本页]
作者:
狂风大尉
时间:
2014-7-29 00:31
标题:
类似于Itween的插件GoKit的研究
GoKit学习:
GoKit:类似于Itween的插件,控制物体的移动,缩放,旋转等动画效果。相对于itween的
键值对存储或是获取信息,goKit的使用更加的方便。
闲话不多说直接上代码:
1.物体移动到特定的位置:
public transform tartgetCube;
void Start()
{
//位移
Go.from(tartgetCube, 4f, new GoTweenConfig().position(new Vector3(1, 2, 3)));
//旋转
Go.to(cube,2f,new GoTweenConfig().rotation(Quaternion.Euler(new Vector3(-30,90,2))));
//缩放
Go.to(cube,2f,new GoTweenConfig().scale(new Vector3(1.2f,1.2f,1.2f)));
//vecArray是一个路径path数组,你可以随便去写 物体会按照这个路径去走
var path=new GoSpline(vecArray);
Go.to(cube, 2f, new GoTweenConfig().positionPath(path, true, GoLookAtType.TargetTransform, tartgetTransform)
.setIterations(-1,GoLoopType.PingPong));
}
GoTweenConfig:可以看出来里面包含很多我们常用的方法,位移,旋转,还有缩放。
我也是刚开始研究大家有时间的话可以去商店里去下载,免费的(来自网络转载)
作者:
hyui
时间:
2014-7-29 01:21
Thanks for sharing this !
作者:
Kadina
时间:
2014-7-29 08:12
Thanks for sharing this !
作者:
我不再年轻
时间:
2014-7-29 10:14
Gokit效率比iTween好很多
作者:
HIDEOKOJIMA
时间:
2014-7-29 10:36
Thanks for sharing this one !
作者:
aitaiwanmei
时间:
2014-7-29 10:39
mark ~ .
欢迎光临 纳金网 (http://old.narkii.com/club/)
Powered by Discuz! X2.5