fix: (editor) sometimes crashes when entering play mode

If there are particle prefabs created using version 3.x in the project, there is a possibility that the editor may crash when entering Play Mode due to deserialization.
pull/289/head
wmltogether 2024-01-18 16:35:57 +08:00 committed by mob-sakai
parent 6a1fef4150
commit b80c3e6c9f
1 changed files with 1 additions and 1 deletions

View File

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