From c6ea64fb4e4755c4290bf5228d8cd463bc81c21f Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 13 十一月 2025 21:42:16 +0800
Subject: [PATCH] 0312 英雄之路红点受限每日任务开启;增加检测装备输出
---
Main/System/Guild/GuildEmblemCell.cs | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/Main/System/Guild/GuildEmblemCell.cs b/Main/System/Guild/GuildEmblemCell.cs
index a12a4f4..b10f7aa 100644
--- a/Main/System/Guild/GuildEmblemCell.cs
+++ b/Main/System/Guild/GuildEmblemCell.cs
@@ -11,7 +11,7 @@
[SerializeField] Image emblemIcon;
[SerializeField] UIFrame frame;
[SerializeField] UIEffectPlayer uiEffect;
- [Header("瀛� F9E29F 鍖呰竟 683C00 瀛楀彿36 Y:-9")]
+ [Header("浠g爜宸插鐞� 瀛� F9E29F 鍖呰竟 683C00 瀛楀彿72 Y:-18")]
[SerializeField] Text emblemNameText; //瀛� F9E29F 鍖呰竟 683C00 瀛楀彿36 Y-9
public void Display(int emblemID, string emblemName, float _scale = 1f)
@@ -52,7 +52,19 @@
emblemIcon.SetNativeSize();
}
emblemIcon.rectTransform.localScale = new Vector3(_scale, _scale, _scale);
- emblemNameText.text = emblemName;
+ if (emblemNameText != null)
+ {
+ emblemNameText.text = emblemName;
+ emblemNameText.fontSize = 72;
+ emblemNameText.rectTransform.localPosition = new Vector3(0, -18, 0);
+ emblemNameText.color = new Color32(255, 222, 159, 255);
+ var outline = emblemNameText.GetComponent<OutlineEx>();
+ if (outline != null)
+ {
+ emblemNameText.GetComponent<OutlineEx>().OutlineColor = new Color32(104, 60, 0, 255);
+ }
+ }
+
}
}
--
Gitblit v1.8.0