| | |
| | | using vnxbqy.UI; |
| | | using System; |
| | | using System; |
| | | using System.Collections; |
| | | using System.Collections.Generic; |
| | | using System.Text.RegularExpressions; |
| | |
| | | // BattleHint.Instance.OnStageLoadFinish(); |
| | | } |
| | | |
| | | private void BeforePlayerDataInitializeEvent() |
| | | public void BeforePlayerDataInitializeEvent() |
| | | { |
| | | ScrollTip.m_Hints.Clear(); |
| | | ServerTipDetails.ClearHint(); |
| | | } |
| | | |
| | | // // TODO YYL |
| | | public void ReceiveNotifyCode(H0212_tagNotifyCode vNetData) |
| | | { |
| | | if (vNetData != null) |
| | |
| | | } |
| | | } |
| | | |
| | | //信息提示表的提示 |
| | | public void ShowTip(string key, params object[] msg) |
| | | { |
| | | SysInfoConfig cfg = SysInfoConfig.Get(key); |
| | |
| | | tipInfoList.AddRange(msg); |
| | | AnalysisSysmsg(cfg); |
| | | } |
| | | else |
| | | { |
| | | Debug.LogError("未找到系统提示信息: " + key); |
| | | } |
| | | } |
| | | |
| | | //语言表的提示 |
| | | public void ShowLangTip(string key, params object[] msg) |
| | | { |
| | | string hint = Language.Get(key, msg); |
| | | ScrollTip.ShowTip(hint); |
| | | } |
| | | |
| | | //直接传文字的提示 |
| | | public void ShowStringTip(string hint) |
| | | { |
| | | ScrollTip.ShowTip(hint); |
| | | } |
| | | |
| | | void AnalysisSysmsg(SysInfoConfig cfg) |