feat: add cross-engine runtime support

This commit is contained in:
2026-09-05 02:33:55 +08:00
parent 02a0ece826
commit a4c78ea7a7
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,5 +1,7 @@
#nullable enable
#if UNITY_5_3_OR_NEWER
using UnityEngine;
#endif
namespace ShrinkContext
{
@@ -13,7 +15,9 @@ namespace ShrinkContext
public static ShrinkContextRuntime Default => _default ??= new ShrinkContextRuntime();
#if UNITY_5_3_OR_NEWER
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)]
#endif
private static void ResetStaticState()
{
_default = null;