| | |
| | | using UnityEngine; |
| | | using System.Collections; |
| | | using System.Collections.Generic; |
| | | using UnityEngine.UI; |
| | | using DG.Tweening; |
| | | using Cysharp.Threading.Tasks; |
| | | |
| | | using System; |
| | | |
| | | using System.Text.RegularExpressions; |
| | | using DG.Tweening; |
| | | |
| | | public class MessageWin : UIBase |
| | | { |
| | |
| | | m_ServerTipPrepared = true; |
| | | |
| | | #if UNITY_EDITOR |
| | | m_ContainerGM.SetActive(VersionConfig.Get().debugVersion); |
| | | m_ContainerGM.SetActive(VersionConfig.config.debugVersion); |
| | | #else |
| | | m_ContainerGM.SetActive(false); |
| | | #endif |
| | |
| | | OnGMOpen(); |
| | | ServerTipDetails.requireOpenGM = false; |
| | | } |
| | | } |
| | | |
| | | private void OnDisable() |
| | | { |
| | | m_ContainerNormalHint.SetActive(false); |
| | | m_ContainerChatHint.SetActive(false); |
| | | DisableServerTip(); |
| | | StopAllCoroutines(); |
| | | } |
| | | |
| | | void CheckNormalHint() |