Esempio n. 1
0
 void Back_OnClick()
 {
     this.dealloc();
     if (_Instance != null)
     {
         _Instance = null;
     }
 }
Esempio n. 2
0
 public static void OpenUI(bool _isTianxia)
 {
     if (_Instance == null)
     {
         Object obj = PrefabLoader.loadFromPack("LS/pbLSRobIntroduct");
         if (obj != null)
         {
             GameObject go = Instantiate(obj) as GameObject;
             if (go != null)
             {
                 _Instance = go.GetComponent <UIRobIntroduct>();
                 RED.AddChild(go, DBUIController.mDBUIInstance._TopRoot);
                 _Instance.m_isTianxia = _isTianxia;
             }
         }
     }
 }
Esempio n. 3
0
 public void QiangduoIntroduction()
 {
     UIRobIntroduct.OpenUI(false);
 }