diff --git a/Assets/TEngine/Runtime/UI/UISys.cs b/Assets/TEngine/Runtime/UI/UISys.cs index fa7cdc77..1e2cb29c 100644 --- a/Assets/TEngine/Runtime/UI/UISys.cs +++ b/Assets/TEngine/Runtime/UI/UISys.cs @@ -81,6 +81,9 @@ namespace UI public static void ShowTipMsg(string str) { GameEventMgr.Instance.Send(TipsEvent.Log,str); +#if UNITY_EDITOR + TLogger.LogInfo(str); +#endif } }