From e218eeb3f615c5c2c1e88110f9a71a47c3e3618d Mon Sep 17 00:00:00 2001 From: Ding Yuntian <1491671119@qq.com> Date: Fri, 13 Mar 2026 22:04:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=E4=BF=AE=E5=A4=8D=E7=BB=88=E7=AB=AF?= =?UTF-8?q?=E7=A9=BA=E8=A1=8C=E4=B8=8D=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/UI/Components/TerminalText.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/UI/Components/TerminalText.cs b/Assets/Scripts/UI/Components/TerminalText.cs index b069e1734..bc91f6c2c 100644 --- a/Assets/Scripts/UI/Components/TerminalText.cs +++ b/Assets/Scripts/UI/Components/TerminalText.cs @@ -141,7 +141,7 @@ namespace AibisDream.UI public void AddText(string text) { if (string.IsNullOrEmpty(text)) - return; + text = " "; // 如果使用Typewriter和TextAnimator,使用ShowText方法追加文本并播放动画 if (typewriter != null && textAnimator != null)