- Home /
 
 
               Question by 
               NutellaDaddy · Jan 11, 2014 at 05:16 AM · 
                guisceneloading screen  
              
 
              How to make loading screens?
In between each scene I want there to be a loading screen. I can set it up myself ,but what kind of script would I use for it? I want it to last til the scene is done loading and slowly fade into the scene being loaded.
               Comment
              
 
               
               
               Best Answer 
              
 
              Answer by Josenifftodd · Jan 11, 2014 at 06:52 AM
Maybe something like this if you could add a fade function to it.
function Start () {
}
function OnTriggerEnter () { Application.LoadLevel("nextscene");
}
Your answer