Exemple #1
0
 public void Awake()
 {
     TutorialMgr.instance = this;
 }
Exemple #2
0
    public static TutorialMgr GetTutorialMgr()
    {
        if (tutorialMgr == null)
            tutorialMgr = GameObject.Find("HudGUI/TutorialGUI/Panel").gameObject.GetComponent<TutorialMgr>();

        return tutorialMgr;
    }