[]Tween的to方法完成缓动后的回调怎么写,Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,aaa,0,false);aaa是一个测试方法

已邀请:

zhpr613

赞同来自: cuixueying

import laya.utils.Handler
是否忘记导包了,我用的as3,导包之后是没有问题的。

cuixueying

赞同来自:

Tween.to(sp,{x:400},1000,null,Handler.create(this,onTweeed))
onTween就是你的缓动完成后的回调function
匿名用户

匿名用户

赞同来自:

function begingame(){
    console.log("开始游戏");
    var Tween   = Laya.Tween;
    gamebox.x = Laya.Browser.width;
    gamebox.visible = true;
    Laya.stage.addChild(gamebox);
    // Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,);
    Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,Handler.create(this,onTweeed))
    Tween.to(gamebox,{x:0},1000);
    console.log(beginbox.x);
}
function onTweeed(){
    alert("完成了");
}
 
这样写,报错了:Uncaught ReferenceError: Handler is not defined at begingame

要回复问题请先

商务合作
商务合作