Merge pull request #289 from wmltogether/fix-deserialize-crash

Fix Editor sometimes crashes when entering Play Mode
This commit is contained in:
mob-sakai
2024-01-18 19:41:27 +09:00
committed by GitHub

View File

@@ -378,7 +378,7 @@ namespace Coffee.UIExtensions
#if UNITY_EDITOR #if UNITY_EDITOR
EditorApplication.delayCall += () => EditorApplication.delayCall += () =>
{ {
if (!this || !gameObject || !transform) return; if (!this || !gameObject || !transform || Application.isPlaying) return;
transform.localScale = Vector3.one; transform.localScale = Vector3.one;
m_ResetScaleOnEnable = false; m_ResetScaleOnEnable = false;
EditorUtility.SetDirty(this); EditorUtility.SetDirty(this);