Пример #1
0
 public static void ShowAt()
 {
     if (instance == null)
     {
         instance = UIView.GetAView().AddUIComponent(typeof(UIUpdateNoticePopUp)) as UIUpdateNoticePopUp;
         instance.Show(true);
         UIView.PushModal(instance);
     }
     else
     {
         instance.Show(true);
     }
     instance.relativePosition += new Vector3(-200, -200);
 }