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/HeroDebutRankTop3Cell.cs |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Main/System/HeroDebut/HeroDebutRankTop3Cell.cs b/Main/System/HeroDebut/HeroDebutRankTop3Cell.cs
index 11b71d9..d5ccd8b 100644
--- a/Main/System/HeroDebut/HeroDebutRankTop3Cell.cs
+++ b/Main/System/HeroDebut/HeroDebutRankTop3Cell.cs
@@ -1,3 +1,4 @@
+using Cysharp.Threading.Tasks;
 using UnityEngine;
 using UnityEngine.UI;
 
@@ -34,9 +35,9 @@
         officialTitleCell.SetActive(true);
         rankValueText.text = string.Format(valueFormat, UIHelper.ReplaceLargeNum(rankData.cmpValue));
         nameText.text = rankData.name1;
-        officialTitleCell.InitUI((int)rankData.value1, (int)rankData.value2);
+        officialTitleCell.InitUI((int)rankData.value1, (int)rankData.value2).Forget();
         model.SetActive(true);
-        model.Create(HorseManager.Instance.GetOtherPlayerHorseSkinID((int)rankData.value6), (int)rankData.value5, rank == 1 ? 1f : 0.8f);
+        model.Create(HorseManager.Instance.GetOtherPlayerHorseSkinID((int)rankData.value6), (int)rankData.value5, rank == 1 ? 1f : 0.8f).Forget();
         queryPlayerBtn.SetListener(() =>
         {
             AvatarHelper.TryViewOtherPlayerInfo((int)rankData.id);

--
Gitblit v1.8.0