cocos3报错:loadScene: Can not load the scene 'game' because it was not in the build settings before playing.
问题:
cocos3预览项目报错:loadScene: Can not load the scene 'game' because it was not in the build settings before playing.
可能的原因:
- 如报错所说,构建选项里没有勾选要加载的这个场景。解决:点击“构建发布-编辑构建配置-参与构建场景”勾选报错的场景即可;
- 包名或场景名写错了;
- 加载顺序错了(一般出在开发预览时,比如你设计的start场景为主场景,然后在start场景加载分包,在分包里的home场景再加载game场景,但是你的cocos creator选择了预览当前(home)场景,要加载的(game)场景在分包里)。解决:此情况只需将预览场景选择为start场景即可。