From a260ecd94e380b1ba79f99446cf2f9400fdf8f02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E6=B5=B7?= <1464576565@qq.com> Date: Mon, 8 Sep 2025 11:18:14 +0800 Subject: [PATCH] modify --- Runtime/GameAppStaticMemberReset.cs | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/Runtime/GameAppStaticMemberReset.cs b/Runtime/GameAppStaticMemberReset.cs index 8872db6..67fa508 100644 --- a/Runtime/GameAppStaticMemberReset.cs +++ b/Runtime/GameAppStaticMemberReset.cs @@ -17,40 +17,18 @@ internal static class GameAppStaticMemberReset private static void ResetAllEventContainers() { GameApp._base = null; -#if ALICIZAX_AUDIO_SUPPORT GameApp._audio = null; -#endif - -#if ALICIZAX_EVENT_SUPPORT - GameApp._event = null; -#endif -#if ALICIZAX_FSM_SUPPORT GameApp._fsm = null; -#endif -#if ALICIZAX_LOCALIZATION_SUPPORT GameApp._localization = null; -#endif #if ALICIZAX_NETWORK GameApp._network = null; #endif GameApp._objectPool = null; -#if ALICIZAX_RESOURCE_SUPPORT GameApp._resource = null; -#endif - -#if ALICIZAX_SCENE_SUPPORT GameApp._scene = null; -#endif - -#if ALICIZAX_TIMER_SUPPORT GameApp._timer = null; -#endif - -#if ALICIZAX_UI_SUPPORT GameApp._ui = null; -#endif - } }