コード例 #1
0
 void Start()
 {
     loadManagerController = GameObject.Find("LoadManagerController").GetComponent<Load_Manager>();
     level_Information = GameObject.Find("Level_Information").GetComponent<Level_Information>();
     startGameScript = GameObject.Find("Main Camera").GetComponent<StartGame>();
     highscoreTable = new HighscoreTable();
 }
コード例 #2
0
    void Start()
    {
        load_Manager     = this;
        LevelInformation = GameObject.Find("Level_Information").GetComponent <Level_Information>();

        sceneList.Add("Main_Menu", 0);
        sceneList.Add("Leaderboards", 1);
        sceneList.Add("Level_Select", 2);
        sceneList.Add("Forest", 3);
        sceneList.Add("City", 4);
        sceneList.Add("Military-Base", 5);
        sceneList.Add("Demo_Level", 100);
    }