Scene takes too long to load
Hi my scene takes a long time to load.I have 3 scenes, the first just a camera and a startup GUI,the second is the game itself,and the last a simple finish screen. If I open the "main" scene it takes a couple seconds to load,but if i run the game from the first scene to the second it takes about 3/4 minutes to load. Here are the dependencies of the second scene :
maybe the way you're loading into the main scene is the problem. calling load level multiple times?
using UnityEngine.Scene$$anonymous$$anagement;
public void Play(){
Scene$$anonymous$$anager.LoadScene ("1");
}
public void Finish(){
Scene$$anonymous$$anager.LoadScene ("finish");
}
public void Exit(){
Application.Quit();
}
Answer by AquaBomber · Feb 07, 2017 at 06:26 PM
Here is a picture of my profiler
Your answer
Follow this Question
Related Questions
How Do I Get a Reference To An Object In Another Scene In A Field In The Inspector? 4 Answers
Ball game -ball stuck,Ball stuck after switching scenes. 0 Answers
Making the player go from one scene to another but spawn in a certain place 0 Answers
Multiple Entrances to levels 0 Answers
,delay after dying and going back to main menu (new scene) 0 Answers