コード例 #1
0
 public void IntroLevel3()
 {
     ui.ShowIntroduction("Level " + currentLevel, "Objective: 1 triangle must make it to the end of the maze.\n\nYou have 10 generations with maximum 20 population.\n\nAll setting unlocked in setup!");
     corridorLevel1.gameObject.SetActive(false);
     corridorLevel2.gameObject.SetActive(false);
     corridorLevel3.gameObject.SetActive(true);
     mainCamera.GetComponent <CameraFocus2D>().Focus(corridorLevel3);
     maxGenerations = 10;
     ui.LoadLevel3();
     machineLearning.Begin();
 }