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

        return tutorialMgr;
    }