From 89b772ffbed692acf0674ff87dd68fbc78f54b5e Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期五, 06 三月 2026 16:36:34 +0800
Subject: [PATCH] 492 武将登场-客户端 武将图鉴支持显示活动标识和按开服天显示图鉴
---
Main/System/HeroUI/HeroCollectionCardCell.cs | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/Main/System/HeroUI/HeroCollectionCardCell.cs b/Main/System/HeroUI/HeroCollectionCardCell.cs
index 5392f42..01476c2 100644
--- a/Main/System/HeroUI/HeroCollectionCardCell.cs
+++ b/Main/System/HeroUI/HeroCollectionCardCell.cs
@@ -16,7 +16,7 @@
// [SerializeField] Button bookLVBtn;
[SerializeField] GameObject unGetObj;
[SerializeField] GameObject activeObj; // 鍙縺娲诲甫娴佸厜鏁堟灉鏉愯川
-
+ [SerializeField] GameObject actLimitObj; // 娲诲姩闄愬畾
public void Display(int index, int quality)
{
var heroID = HeroUIManager.Instance.heroCollectDict[quality][index];
@@ -34,6 +34,7 @@
activeObj.SetActive(funcState == 1);
// bookLVBtn.SetActive(funcState > 1);
unGetObj.SetActive(funcState == 0);
+ actLimitObj.SetActive(heroConfig.IsActLimit == 1);
countryImg.SetSprite(HeroUIManager.Instance.GetCountryIconName(heroConfig.Country));
jobImg.SetSprite(HeroUIManager.Instance.GetJobIconName(heroConfig.Class));
--
Gitblit v1.8.0