- 最后登录
- 2019-12-2
- 注册时间
- 2012-8-25
- 阅读权限
- 90
- 积分
- 34660
- 纳金币
- 38268
- 精华
- 111
|
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:可以看出来里面包含很多我们常用的方法,位移,旋转,还有缩放。
我也是刚开始研究大家有时间的话可以去商店里去下载,免费的(来自网络转载)
|
|