我有2个场景,每个场景都有ARcamera,图像目标和定向灯。当我构建APK时会出现问题。
它只显示场景0,而不是场景设置为1。
我很n00b,我该怎么办?
答案 0 :(得分:0)
我认为您的问题与构建APK无关。鉴于添加和选择了两个场景,它们应该构建得很好。但是Unity不会一个接一个地“玩”它们。
场景0被设置为第一个场景。这将是它的开始。如果要切换到其他场景,则必须对其进行编码。
Unity提供了几种通过其Application
功能加载不同场景的方法。
Application.LoadLevel(...); //with the scene number, or its name
Application.LoadLevelAsync(...); //again, with the scene number or its name
或two additive scene loading options,它将保持已加载的对象不变。
所以你需要做的就是提供一些方法来调用加载不同的场景,你应该好好去。