Run 모드 종료 시 데이터가 바로 끊기지 않는 문제

This commit is contained in:
geondo55
2025-06-10 09:40:58 +09:00
parent 0251951472
commit f49899afbc

View File

@@ -316,6 +316,11 @@ namespace Studio
private void DispatchMachineEvent(string type, string id, Dictionary<string, string> entity)
{
if (ManagerHub.instance.Get<RunManager>().curState == RunManager.EState.Stop)
{
Debug.Log("Stop");
return;
}
if (!listenerIdMap.ContainsKey(type))
{
Debug.Log($"Key Value is missing!!!! -Key:{type}-");