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); + } } }