From afeb48933da3c7dde5062e329fdd257c3a61efe0 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Mon, 3 Nov 2025 16:38:03 +0100 Subject: [PATCH] [unity] Fixed missing added file changes of preceding commit. See #2965. --- .../Runtime/spine-unity/Threading/SkeletonUpdateSystem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spine-unity/Assets/Spine/Runtime/spine-unity/Threading/SkeletonUpdateSystem.cs b/spine-unity/Assets/Spine/Runtime/spine-unity/Threading/SkeletonUpdateSystem.cs index 1d0e9c2c9..01835a357 100644 --- a/spine-unity/Assets/Spine/Runtime/spine-unity/Threading/SkeletonUpdateSystem.cs +++ b/spine-unity/Assets/Spine/Runtime/spine-unity/Threading/SkeletonUpdateSystem.cs @@ -32,7 +32,7 @@ #define READ_VOLATILE_ONCE #if UNITY_2017_3_OR_NEWER -//#define ENABLE_THREAD_PROFILING +#define ENABLE_THREAD_PROFILING #endif #define DONT_WAIT_FOR_ALL_LATEUPDATE_TASKS // enabled improves performance a bit. @@ -209,7 +209,7 @@ namespace Spine.Unity { #if USE_THREADED_ANIMATION_UPDATE public void RegisterForUpdate (UpdateTiming updateTiming, SkeletonAnimationBase skeletonAnimation) { - skeletonAnimation.isUpdatedExternally = true; + skeletonAnimation.IsUpdatedExternally = true; var skeletonAnimations = skeletonAnimationsUpdate; if (updateTiming == UpdateTiming.InFixedUpdate) skeletonAnimations = skeletonAnimationsFixedUpdate; @@ -226,7 +226,7 @@ namespace Spine.Unity { else if (updateTiming == UpdateTiming.InLateUpdate) skeletonAnimations = skeletonAnimationsLateUpdate; skeletonAnimations.Remove(skeletonAnimation); - skeletonAnimation.isUpdatedExternally = false; + skeletonAnimation.IsUpdatedExternally = false; } #endif