fix: suppress ObjectReferenceFixer in play mode

Not sure if this will do anything, but maybe it'll help with the perf issues people have reported?
This commit is contained in:
bd_ 2024-11-03 10:43:31 -08:00
parent 6fd8ac0cd7
commit 5551b881df

View File

@ -38,10 +38,23 @@ namespace nadena.dev.modular_avatar.core
_context?.Invalidate?.Invoke();
}
};
EditorApplication.playModeStateChanged += state =>
{
if (state == PlayModeStateChange.EnteredEditMode)
{
EditorApplication.delayCall += ProcessObjectReferences;
}
};
}
private static void ProcessObjectReferences()
{
if (EditorApplication.isPlayingOrWillChangePlaymode)
{
_context = null;
return;
}
_lastStage = GetCurrentContentsRootId(out var contentsRoot);
AvatarObjectReference.InvalidateAll();