I have 7 levels and when I play them while in Unity, levels 1-7 load with no problem. However, when I actually publish the game to an .exe, my game starts in level 2, not level 1.
What is causing this? Any information is greatly appreciated. Thank you!
Shawn
2 Answers
2
make sure while adding levels to build settings your levels are added in order. So level one is level 0.(or if you have a main menu it sould be level 0 and level one will be level 1).
can't really say for sure but there are a few things to try:
Make sure that your script points to Level 1 from your start screen or whatever you have set up.
Make sure your build settings have all of the levels listed. you may have forgotten to add level 1 to the build.
check your build settings and make sure you have the right scenes loaded in the right order.your starting screen or menu should be scene 0 on the build settings scene list.make sure all scripts are of course adjusted relevantly to load the correct level.
– anon61858128I think you just pointed out my solution! Thank you!
– Velketor