diff --git a/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIPlayerHeadItem.cs b/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIPlayerHeadItem.cs index cc367b3a..4de3324c 100644 --- a/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIPlayerHeadItem.cs +++ b/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIPlayerHeadItem.cs @@ -1,6 +1,7 @@ using UnityEngine; using UnityEngine.UI; using TEngine; +using Cysharp.Threading.Tasks; namespace GameLogic { @@ -30,10 +31,10 @@ namespace GameLogic public void OnInit(UnitPlayerData playerData) { - - // ÉèÖÃÍ·Ïñ AsyncImageDownload.Instance.SetAsyncImage(playerData.protCustMessageData.imgURL, m_imgHeadIcon); + + UniTask.Delay(5000).ContinueWith(() => { Destroy(); }); } } }