[]HIERARCHY_LOADED 和 LOADED有什么区别?为什么对scene不起作用
var scene = Laya.stage.addChild(new Laya.Scene());HIERARCHY_LOADED 和 LOADED有什么区别?为什么对scene不起作用?
scene.once(Laya.Event.HIERARCHY_LOADED, null, function (sprite) {
console.log("scene HIERARCHY_LOADED");
});
scene.once(Laya.Event.LOADED, null, function (sprite) {
console.log("scene LOADED");
});
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
183*****755
赞同来自:
这个适用于Scene.load("xxx.ls")。从外部url中加载的场景。