From 1567c1d43dd4631c06ec8752b177baa45fdfab71 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 09 九月 2025 23:24:40 +0800
Subject: [PATCH] 117 【武将】武将系统 - 背景图

---
 Main/System/HeroUI/HeroCollectionCardCell.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Main/System/HeroUI/HeroCollectionCardCell.cs b/Main/System/HeroUI/HeroCollectionCardCell.cs
index 178ce11..c947636 100644
--- a/Main/System/HeroUI/HeroCollectionCardCell.cs
+++ b/Main/System/HeroUI/HeroCollectionCardCell.cs
@@ -13,7 +13,7 @@
     [SerializeField] Text nameText;
     [SerializeField] Image trainStateImg;
     [SerializeField] RedpointBehaviour redpoint;
-    [SerializeField] Button fullBtn;
+    [SerializeField] Button bookLVBtn;
     [SerializeField] GameObject unGetObj;
     [SerializeField] GameObject activeObj; // 鍙縺娲诲甫娴佸厜鏁堟灉鏉愯川
 
@@ -29,7 +29,7 @@
         int funcState = HeroUIManager.Instance.GetHeroBookState(heroID, quality);
 
         activeObj.SetActive(funcState == 1);
-        fullBtn.SetActive(funcState == 5);
+        bookLVBtn.SetActive(funcState > 1);
         unGetObj.SetActive(funcState == 0);
 
         countryImg.SetSprite(HeroUIManager.Instance.GetCountryIconName(heroConfig.Country));
@@ -78,7 +78,7 @@
             }
         });
         
-        fullBtn.AddListener(() =>
+        bookLVBtn.AddListener(() =>
         {
             HeroUIManager.Instance.selectCollectHeroID = heroID;
             UIManager.Instance.OpenWindow<HeroCollectionLvUpWin>();

--
Gitblit v1.8.0