Laya.init(config.resolution).then(() => {
if (config.stat)
Laya.Stat.show();
if (window.$main)
return window.$main();
else if (config.startupScene) {
return Laya.Scene.open(config.startupScene, true, null, (progress) => {
if (window.onSplashProgress)
window.onSplashProgress(progress);
});
}
}).then(() => {
if (window.hideSplashScreen)
window.hideSplashScreen();
});
Laya.init 后没有执行then 里面的方法