[ios] Fix SkeletonDrawableWrapper.update() to call directly into the drawable.

This commit is contained in:
Mario Zechner 2025-08-26 17:38:08 +02:00
parent 500c30319a
commit 81c9f5630a

View File

@ -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() {