Hello!
All my other loading screens are working properly and looping nicely, but my title screen one just does it's cycle once and then freezes. And I copied one of the working loading screens to the title screen so it should be exactly the same as the other working loading screens.
void Awake () {
if (PlayerPrefs.Haskey ("Nickname")) {
invoke ("MainMenu", 3);
}
}
void MainMenu () {
loadScreen.SetActive (true);
Application.LoadLevelAsync ("Main Menu");
}
↧