Load all scenes during splash screen
I have a multiple scenes in my mobile 2D unity game, I want to load all my scenes in splash screen, so that the scene passing would be smooth. How can I do this ? If I do this, do I need to change "Application.LoadScene()" method, and what method can I use ? do I need to change "Application.LoadScene()" method, and what method can I use ? You need to use SceneManager.LoadSceneAsync if you don't want this to block Unity while loading so many scenes. By using SceneManager.LoadSceneAsync , you will be able to show the loading status. I want to load all my scenes in splash screen Create a scene