From 6172203e9ce7c9f723099fec9c3313e31c8387b0 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期二, 30 十二月 2025 17:56:51 +0800
Subject: [PATCH] 382 武将宿缘-客户端 修复字体描边显示
---
Main/System/HeroFates/HeroFatesCell.cs | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/Main/System/HeroFates/HeroFatesCell.cs b/Main/System/HeroFates/HeroFatesCell.cs
index 9932435..1adf79a 100644
--- a/Main/System/HeroFates/HeroFatesCell.cs
+++ b/Main/System/HeroFates/HeroFatesCell.cs
@@ -73,12 +73,11 @@
int fatesNowStarCnt = manager.GetFatesNowStarCnt(fatesId);
int nextNeedStarCnt = nextLVConfig.NeedStarTotal;
txtHasHeroTotalStar.text = StringUtility.Concat(Language.Get("HeroFates05"), UIHelper.AppendColor(nextNeedStarCnt <= fatesNowStarCnt ? TextColType.LightGreen : TextColType.Red, Language.Get("HeroFates11", fatesNowStarCnt, nextNeedStarCnt)));
- txtFateName.color = UIHelper.GetUIColorByFunc(nextLVConfig.NeedQuality);
- outlineFateName.OutlineColor = UIHelper.GetUIOutlineColor(nextLVConfig.NeedQuality);
}
txtFateName.text = config.FatesName;
-
+ txtFateName.color = UIHelper.GetUIColorByFunc(config.BGQuality);
+ outlineFateName.OutlineColor = UIHelper.GetUIOutlineColor(config.BGQuality);
DisplayLH(config);
transAttr.SetActive(!isNoActive);
--
Gitblit v1.8.0