From 98495d6a7e15b543b7229ab50e2d025d42f1e0f3 Mon Sep 17 00:00:00 2001 From: zhangaotian <8474238@qq.com> Date: Thu, 15 Aug 2024 12:43:09 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90Bug=E3=80=91=E6=96=B0=E6=89=8B?= =?UTF-8?q?=E5=BC=95=E5=AF=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Scripts/Framework/UI/Other/UISyncTipController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }