diff --git a/spine-tk2d/Assets/Spine/SkeletonComponent.cs b/spine-tk2d/Assets/Spine/SkeletonComponent.cs index 5819f7640..75745aaee 100644 --- a/spine-tk2d/Assets/Spine/SkeletonComponent.cs +++ b/spine-tk2d/Assets/Spine/SkeletonComponent.cs @@ -285,11 +285,11 @@ public class SkeletonComponent : MonoBehaviour { } public virtual void OnEnable () { - Update(); + Initialize(); } public virtual void Reset () { - Update(); + Initialize(); } #if UNITY_EDITOR diff --git a/spine-unity/Assets/Spine/SkeletonComponent.cs b/spine-unity/Assets/Spine/SkeletonComponent.cs index 357a6ce7d..8a8f76de1 100644 --- a/spine-unity/Assets/Spine/SkeletonComponent.cs +++ b/spine-unity/Assets/Spine/SkeletonComponent.cs @@ -52,7 +52,7 @@ public class SkeletonComponent : MonoBehaviour { private Material[] sharedMaterials = new Material[0]; private List submeshMaterials = new List(); private List submeshes = new List(); - + /// False if Initialize needs to be called. public bool Initialized { get { @@ -287,11 +287,11 @@ public class SkeletonComponent : MonoBehaviour { } public virtual void OnEnable () { - Update(); + Initialize(); } public virtual void Reset () { - Update(); + Initialize(); } #if UNITY_EDITOR