From 81c9f5630acd8814fd6be4f7fd8326811d2dc5f9 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Tue, 26 Aug 2025 17:38:08 +0200 Subject: [PATCH] [ios] Fix SkeletonDrawableWrapper.update() to call directly into the drawable. --- spine-ios/Sources/SpineiOS/SkeletonDrawableWrapper.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/spine-ios/Sources/SpineiOS/SkeletonDrawableWrapper.swift b/spine-ios/Sources/SpineiOS/SkeletonDrawableWrapper.swift index bf4d45bce..19b36a629 100644 --- a/spine-ios/Sources/SpineiOS/SkeletonDrawableWrapper.swift +++ b/spine-ios/Sources/SpineiOS/SkeletonDrawableWrapper.swift @@ -135,11 +135,7 @@ public final class SkeletonDrawableWrapper: NSObject { public func update(delta: Float) { if disposed { return } - animationState.update(delta) - _ = animationState.apply(skeleton) - - skeleton.update(delta) - skeleton.updateWorldTransform(Physics.update) + skeletonDrawable.update(delta); } public func dispose() {