From 0011581503e30de4e4a5e004aed15e18e8b6aed2 Mon Sep 17 00:00:00 2001 From: bottlefish <781230111@qq.com> Date: Fri, 13 Feb 2026 20:13:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(sales):=20=E9=94=80=E5=94=AE=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E8=BF=9B=E5=85=A5=E6=97=B6=E6=B3=A8=E5=86=8C=E5=AF=B9?= =?UTF-8?q?=E8=AF=9D=E6=B0=94=E6=B3=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor --- Assets/Scripts/FixSystemNew/FixStateMachine.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Assets/Scripts/FixSystemNew/FixStateMachine.cs b/Assets/Scripts/FixSystemNew/FixStateMachine.cs index 7ed6a1dc5..8f48076ed 100644 --- a/Assets/Scripts/FixSystemNew/FixStateMachine.cs +++ b/Assets/Scripts/FixSystemNew/FixStateMachine.cs @@ -788,6 +788,13 @@ namespace AibisDream.FixSystem // FadeOut yield return UIManager.Instance.GetPanel().FadeOutAsync(0.5f); + + // 注册对话气泡(与其他 state 一致) + if (salesManager.bubbleSlotGroup != null) + { + var data = salesManager.bubbleSlotGroup.CollectData(); + DialogUIManager.Instance.LoadBubbles(data); + } } }