From e7e22b0cfafe53223b0a0f6b6189b2a8219f0740 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 09 九月 2025 17:08:34 +0800
Subject: [PATCH] 117 【武将】武将系统 - 图鉴

---
 Main/System/HeroUI/HeroCardCell.cs |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/Main/System/HeroUI/HeroCardCell.cs b/Main/System/HeroUI/HeroCardCell.cs
index 0ad1a75..dac5741 100644
--- a/Main/System/HeroUI/HeroCardCell.cs
+++ b/Main/System/HeroUI/HeroCardCell.cs
@@ -6,7 +6,6 @@
 {
     [SerializeField] Button heroCardBtn;
     [SerializeField] Image heroCardBG;
-    [SerializeField] Material glowMaterial; // 娴佸厜鏁堟灉鏉愯川
     [SerializeField] Text lvText;
     [SerializeField] Image countryImg;
     [SerializeField] Image jobImg;
@@ -32,10 +31,6 @@
 
         this.gameObject.SetActive(true);
         heroCardBG.SetSprite("herocardbg" + hero.Quality);
-        if (glowMaterial != null)
-        {
-            heroCardBG.material = glowMaterial;
-        }
         lvText.text = Language.Get("L1094") + hero.heroLevel.ToString();
         var heroConfig = hero.heroConfig;
         countryImg.SetSprite(HeroUIManager.Instance.GetCountryIconName(heroConfig.Country));

--
Gitblit v1.8.0