public void StartPopup(string mes, int messageNo, CommonPopupDialogMessage.PlayType type = CommonPopupDialogMessage.PlayType.Long)
 {
     if (this.Message == null)
     {
         this.Message = base.GetComponentInChildren <UILabel>();
     }
     this.Message.text = mes;
     this.hideDelay    = (float)((type != CommonPopupDialogMessage.PlayType.Short) ? 1 : 0);
     base.StartCoroutine(this.StartPopupCor(messageNo));
 }
Exemplo n.º 2
0
 public void StartPopup(string mes, int mesNo, CommonPopupDialogMessage.PlayType type)
 {
     Message.StartPopup(mes, mesNo, type);
 }