From b42a4a2a021aabf679f7e3d5a134323f30c38394 Mon Sep 17 00:00:00 2001 From: zhangaotian <8474238@qq.com> Date: Thu, 15 Aug 2024 12:52:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90Bug=E3=80=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs | 2 +- .../Scripts/Framework/UI/Other/UIUserAgreementController.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs b/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs index c680d26..37e9b78 100644 --- a/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs +++ b/Forest/Assets/Scripts/Framework/UI/Other/UISyncTipController.cs @@ -32,7 +32,7 @@ public class UISyncTipController : UIWindow private void CloseUI() { CloseWindow(true); - if (LevelSelectManager.Instance.CurPassLevelIndex < 1 && !AppInfoManager.Instance.UpdateConfirm) + if (LevelSelectManager.Instance.CurPassLevelIndex < 1) { DebugUtil.LogG("开启新手引导!"); GuideMananger.Instance.StartGroupGuide(); diff --git a/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs b/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs index 16d2ba8..712058f 100644 --- a/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs +++ b/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs @@ -37,7 +37,7 @@ public class UIUserAgreementController : UIWindow private void OnAgree() { CloseWindow(true); - if (LevelSelectManager.Instance.CurPassLevelIndex < 1) + if (LevelSelectManager.Instance.CurPassLevelIndex < 1 && !AppInfoManager.Instance.UpdateConfirm) GuideMananger.Instance.StartGroupGuide(); SettingManager.Instance.SetFirstLaunch(); BIManager.Instance.TrackEventOnce(cfg.BI.EventFirst.fte_privacy_agree);