Esempio n. 1
0
 void OnOK()
 {
     this.gameObject.SetActive(false);
     if (popupRef != null)
     {
         popupRef.OnOk();
         popupRef = null;
     }
 }
Esempio n. 2
0
 public void ShowAlertPopup(string msg, IPopupOkReference popupRef = null)
 {
     alertPopup.SetActive(true);
     OnShowAlertPopup(msg, popupRef);
 }
Esempio n. 3
0
 void PopupManager_OnShowAlertPopup(string msg, IPopupOkReference popupOk = null)
 {
     description_txt.text = msg;
     popupRef             = popupOk;
 }