Hello guys and thanks for the interest.
I have the following in my project:
- a small scene (the main menu)
- a very large scene (3 hours worth of content made by prefabs, no terrain)
What I want to achieve:
- have a loading screen between these two
- load the very large scene by using one of the two methods (Application.LoadLevelAdditiveAsync or Application.LoadLevelAsync)
-
Which of these options allows me to give the impression that the loading time was very small for the player (basically have the loading screen appear for a little time).
-
Which is best? Have the big scene loaded in one go or there is a way to load it piece by piece as the player advances through it?
-
The loading screen should be in a separate micro scene or it should be in the the small scene (main menu)?
Please excuse me for all the questions, but it’s important to obtain the correct method of loading large scenes.
Thank you!