From 6184d291f11b437f5cf2bd42a5ce86303fcf6baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=AB=E6=B3=A0?= <115220693+bilimoing@users.noreply.github.com> Date: Fri, 29 May 2026 19:14:04 +0800 Subject: [PATCH] Update SUIText.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复文字描边问题 --- UIFramework/SUIElements/SUIText.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UIFramework/SUIElements/SUIText.cs b/UIFramework/SUIElements/SUIText.cs index f2eae7f4..70849316 100644 --- a/UIFramework/SUIElements/SUIText.cs +++ b/UIFramework/SUIElements/SUIText.cs @@ -250,7 +250,7 @@ public override void DrawSelf(SpriteBatch spriteBatch) var scale = new Vector2(TextScale); ChatManager.DrawColorCodedStringShadow(spriteBatch, Font, FinalTextSnippets - , textPos, TextColor, 0f, Vector2.Zero, scale, -1, TextBorder); + , textPos, TextBorderColor, 0f, Vector2.Zero, scale, -1, TextBorder); ChatManager.DrawColorCodedString(spriteBatch, Font, FinalTextSnippets, textPos, TextColor, 0f, Vector2.Zero, scale, out var _, -1f);