[]缓动画Bug,给了回调函数之后是直接过时间后执行回调函数,但是之前的缓动画不会执行
this.bir.x = 0;
this.bir.y = 0;
Laya.Tween.to(this.bir, { x: 200, y: 200 }, 2000, () => { }, Laya.Handler.create(this, this.change));
这里面会直接过两秒执行this.change,而前面x:0->200 y:0->200不会执行 是什么原因??????
this.bir.y = 0;
Laya.Tween.to(this.bir, { x: 200, y: 200 }, 2000, () => { }, Laya.Handler.create(this, this.change));
这里面会直接过两秒执行this.change,而前面x:0->200 y:0->200不会执行 是什么原因??????
没有找到相关结果
已邀请:
3 个回复
cuixueying
赞同来自:
把这句话改下就好了,第四个参数不能是{},如果使用默认缓动类型,设置为null即可!
cuixueying
赞同来自:
shimp
赞同来自: