Merge pull request #289 from wmltogether/fix-deserialize-crash
Fix Editor sometimes crashes when entering Play Modepull/290/head
commit
86de8b6e03
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue