shimp 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不会执行 是什么原因??????
cuixueying Laya.Tween.to(this.testAnimation,{x:200,y:200},2000,null,Laya.Handler.create(this,this.change))把这句话改下就好了,第四个参数不能是{},如果使用默认缓动类型,设置为null即可!