From f49899afbc0b5714706b1a3ca4f8b33420ebaae3 Mon Sep 17 00:00:00 2001 From: geondo55 <102933884+geondo55@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:40:58 +0900 Subject: [PATCH] =?UTF-8?q?Run=20=EB=AA=A8=EB=93=9C=20=EC=A2=85=EB=A3=8C?= =?UTF-8?q?=20=EC=8B=9C=20=EB=8D=B0=EC=9D=B4=ED=84=B0=EA=B0=80=20=EB=B0=94?= =?UTF-8?q?=EB=A1=9C=20=EB=81=8A=EA=B8=B0=EC=A7=80=20=EC=95=8A=EB=8A=94=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Studio/Connect/StudioService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Assets/Scripts/Studio/Connect/StudioService.cs b/Assets/Scripts/Studio/Connect/StudioService.cs index 09119af3..1a82f70c 100644 --- a/Assets/Scripts/Studio/Connect/StudioService.cs +++ b/Assets/Scripts/Studio/Connect/StudioService.cs @@ -316,6 +316,11 @@ namespace Studio private void DispatchMachineEvent(string type, string id, Dictionary entity) { + if (ManagerHub.instance.Get().curState == RunManager.EState.Stop) + { + Debug.Log("Stop"); + return; + } if (!listenerIdMap.ContainsKey(type)) { Debug.Log($"Key Value is missing!!!! -Key:{type}-");