コード例 #1
0
ファイル: TutorialMgr.cs プロジェクト: tmxk061/486_AP
 public void Awake()
 {
     TutorialMgr.instance = this;
 }
コード例 #2
0
ファイル: Const.cs プロジェクト: yakolla/MarineVsAlien
    public static TutorialMgr GetTutorialMgr()
    {
        if (tutorialMgr == null)
            tutorialMgr = GameObject.Find("HudGUI/TutorialGUI/Panel").gameObject.GetComponent<TutorialMgr>();

        return tutorialMgr;
    }