From b0b73f2c1c15caa06bcb374ec345a3cdc45f9915 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期五, 22 八月 2025 14:53:59 +0800
Subject: [PATCH] 155 子 【武将】招募系统 - 优化显示

---
 Main/System/Tip/ScrollTip.cs              |    8 +++++---
 Main/System/HappyXB/HeroCallResultCell.cs |    2 +-
 Main/System/HappyXB/HeroCallResultWin.cs  |    1 +
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/Main/System/HappyXB/HeroCallResultCell.cs b/Main/System/HappyXB/HeroCallResultCell.cs
index 5766cb4..8c5d88e 100644
--- a/Main/System/HappyXB/HeroCallResultCell.cs
+++ b/Main/System/HappyXB/HeroCallResultCell.cs
@@ -27,7 +27,7 @@
     async UniTask DisplayAsync(int heroID, int index, bool isForceSkip=false)
     {
         this.transform.localScale = Vector3.zero;
-        int delaytime = LocalSave.GetBool(HeroUIManager.skipKey, false) ? 0 : 100 * index;
+        int delaytime = LocalSave.GetBool(HeroUIManager.skipKey, false) ? 50 * index : 100 * index;
 
         await UniTask.Delay(delaytime);
         this.transform.localScale = Vector3.one;
diff --git a/Main/System/HappyXB/HeroCallResultWin.cs b/Main/System/HappyXB/HeroCallResultWin.cs
index a67327b..e5397bb 100644
--- a/Main/System/HappyXB/HeroCallResultWin.cs
+++ b/Main/System/HappyXB/HeroCallResultWin.cs
@@ -219,6 +219,7 @@
 
     void SendHeroCall()
     {
+        heroInfoObj.SetActive(false);
         HeroUIManager.Instance.selectCallIndex = 0;
         if (HappyXBModel.Instance.IsHaveFreeXB((int)HeroUIManager.Instance.selectCallType))
         {
diff --git a/Main/System/Tip/ScrollTip.cs b/Main/System/Tip/ScrollTip.cs
index eb6c961..9ce0213 100644
--- a/Main/System/Tip/ScrollTip.cs
+++ b/Main/System/Tip/ScrollTip.cs
@@ -61,10 +61,12 @@
 
     static bool CanOpen()
     {
-        if (UIManager.Instance.IsOpened<HeroCallResultWin>())
-        { 
+        // if (UIManager.Instance.IsOpened<HeroCallResultWin>())
+        // { 
+        //     return false;
+        // }
+        if (HappyXBModel.Instance.isXBCoolTime)
             return false;
-        }
         return true;
     }
 

--
Gitblit v1.8.0