你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
zhpr613
赞同来自: cuixueying
cuixueying
赞同来自:
匿名用户
要回复问题请先登录
3 个回复
zhpr613
赞同来自: cuixueying
是否忘记导包了,我用的as3,导包之后是没有问题的。
cuixueying
赞同来自:
onTween就是你的缓动完成后的回调function
匿名用户
赞同来自:
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