Exemple #1
0
 // Use this for initialization
 void Start()
 {
     CommandLineReader.parse(System.Environment.CommandLine);
     if (CommandLineReader.hasOption("editor"))
     {
         SceneManager.LoadScene("ModelEditor");
     }
     else
     {
         SceneManager.LoadScene("Game");
     }
 }