Example #1
0
 public static void Win()
 {
     GameObject.Find("Popup").GetComponent <Text>().text = "Success";
     StepManager.Pause();
     IsGameOver = true;
 }
Example #2
0
 public static void Fail()
 {
     GameObject.Find("Popup").GetComponent <Text>().text = "Failed";
     StepManager.Pause();
     IsGameOver = true;
 }