Merge branch 'main' into Android_release

Android_release
zhangaotian 2024-08-15 12:52:44 +08:00
commit 3ce53a9f09
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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);