What are the Application commands in untiy 5.3?

0

What is the new command for unity 5.3 ? The Application.Quit(); is obsolete and I already want to change, so I can not bugar, can anyone help me?

    
asked by anonymous 06.04.2016 / 02:59

1 answer

0

Application continues to run smoothly. But now they recommend using SceneManager, to use it you should import "using.UnityEngine.SceneManagement;" For example to change scene use: SceneManager.LoadScene (sceneName);

    
06.04.2016 / 16:03