Inheritance: MonoBehaviour
Beispiel #1
0
    private void Awake()
    {
        Instance = this;

        UserInterface.Show();
        IntroMenu.Show();
    }
Beispiel #2
0
 private void Awake()
 {
     instance = this;
     RegisterListeners();
 }
Beispiel #3
0
 public void OnIntroButtonPressed()
 {
     OptionsMenu.Close();
     IntroMenu.Show();
 }