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

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