static void GetInstance()
 {
     if (_instance == null)
     {
         _instance = Load("Alerts/TutorialAlert", UIAlertController.Instance.CanvasRect) as TutorialAlert;
     }
 }
Exemple #2
0
 public void ClickTutorial()
 {
     TutorialAlert.Present(TutorialAlertType.STORE);
 }
Exemple #3
0
 public void ClickTutorial()
 {
     TutorialAlert.Present(TutorialAlertType.REWARDS);
 }
Exemple #4
0
 public void ClickTutorial()
 {
     TutorialAlert.Present(TutorialAlertType.BATTLE);
 }
 protected override void OnDeactivate()
 {
     base.OnDeactivate();
     _instance = null;
 }