diff --git a/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs b/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs index e2f6022..c680d26 100644 --- a/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs +++ b/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs @@ -32,11 +32,12 @@ public class UISyncTipController : UIWindow private void CloseUI() { CloseWindow(true); - if (LevelSelectManager.Instance.CurPassLevelIndex < 1) + if (LevelSelectManager.Instance.CurPassLevelIndex < 1 && !AppInfoManager.Instance.UpdateConfirm) { DebugUtil.LogG("开启新手引导!"); GuideMananger.Instance.StartGroupGuide(); } + if (!_needHideGfx) EventManager.Instance.Send(EventManager.EventName.ShowGfx); }