Question by
BenT39 · Aug 14, 2016 at 05:56 PM ·
androidscripting problemscene-loadingscene-switching
LoadScene not working
Hi, I have two scenes in my project and try to change them with the SceneManager. Somehow I get all the log messages from the objects in the new Scene, but on the screen freezes with the old scene.
Here is how I am changing the scenes:
Debug.Log ("Changing Scenes");
SceneManager.LoadScene ("MainScene", LoadSceneMode.Single);
This works fine in the editor, but it just won't show the new scene on my Android (although the logs of the new Scene appear).
Comment
Do you get an error after the "Changing Scenes" in Android?
No, no errors. All the scripts from the new scene are executed fine, but the display does not change