From cd9a10ccacd1da87e2fba01444072b51b760803b Mon Sep 17 00:00:00 2001 From: sxb <490433237@qq.com> Date: Mon, 20 May 2024 13:31:57 +0800 Subject: [PATCH] Update RootModule.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复条件判断 --- UnityProject/Assets/TEngine/Runtime/Modules/RootModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnityProject/Assets/TEngine/Runtime/Modules/RootModule.cs b/UnityProject/Assets/TEngine/Runtime/Modules/RootModule.cs index b20b90c1..77388fdc 100644 --- a/UnityProject/Assets/TEngine/Runtime/Modules/RootModule.cs +++ b/UnityProject/Assets/TEngine/Runtime/Modules/RootModule.cs @@ -154,7 +154,7 @@ namespace TEngine private void OnDestroy() { -#if UNITY_EDITOR +#if !UNITY_EDITOR ModuleImpSystem.Shutdown(); #endif }