From 6ccc6f156920469568579d9324fa5791ec1bb9d2 Mon Sep 17 00:00:00 2001 From: bottlefish <781230111@qq.com> Date: Thu, 26 Feb 2026 17:18:20 +0800 Subject: [PATCH] =?UTF-8?q?refactor(fix):=20=E4=BC=98=E5=8C=96=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E7=8A=B6=E6=80=81=E6=9C=BA=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/FixSystemNew/FixStateMachine.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/FixSystemNew/FixStateMachine.cs b/Assets/Scripts/FixSystemNew/FixStateMachine.cs index 8f48076ed..55a7c8c6d 100644 --- a/Assets/Scripts/FixSystemNew/FixStateMachine.cs +++ b/Assets/Scripts/FixSystemNew/FixStateMachine.cs @@ -771,6 +771,7 @@ namespace AibisDream.FixSystem public IEnumerator Enter() { var bodyModuleSystem = FixSystemCenter.SystemDic.Get(); + var screenSystem = FixSystemCenter.SystemDic.Get(); if (!CameraKit.Instance.EqualToCameraState(CameraEnum.BodyModule)) { bodyModuleSystem.SwitchModuleGroup(ModuleState.Head); @@ -792,7 +793,7 @@ namespace AibisDream.FixSystem // 注册对话气泡(与其他 state 一致) if (salesManager.bubbleSlotGroup != null) { - var data = salesManager.bubbleSlotGroup.CollectData(); + var data = screenSystem.BubbleSlotGroup.CollectData(); DialogUIManager.Instance.LoadBubbles(data); } }