From 0fa617a09eedf6bdb25eda55fac1d3344859fd93 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期二, 31 三月 2026 19:46:31 +0800
Subject: [PATCH] webgl
---
Main/System/HeroDebut/HeroDebutPopWin.cs | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/Main/System/HeroDebut/HeroDebutPopWin.cs b/Main/System/HeroDebut/HeroDebutPopWin.cs
index dc25cdf..ee36891 100644
--- a/Main/System/HeroDebut/HeroDebutPopWin.cs
+++ b/Main/System/HeroDebut/HeroDebutPopWin.cs
@@ -1,3 +1,4 @@
+using Cysharp.Threading.Tasks;
using UnityEngine;
using UnityEngine.UI;
@@ -24,7 +25,7 @@
{
UIManager.Instance.CloseWindow<HeroDebutPopWin>();
if (!UIManager.Instance.IsOpened<HeroDebutWin>())
- UIManager.Instance.OpenWindow<HeroDebutWin>();
+ UIManager.Instance.OpenWindowAsync<HeroDebutWin>().Forget();
});
todayPopToggle.AddListener((bool value) =>
{
@@ -89,7 +90,7 @@
infoText.text = artConfig.PopInfoText;
infoText.color = manager.ParseColor32(artConfig.PopInfoColor);
- rolelhShow.Create(skinID, 1, motionName: "", isLh: true);
+ rolelhShow.Create(skinID, 1, motionName: "", isLh: true).Forget();
OnSecondEvent();
}
--
Gitblit v1.8.0