From 71a2d908393de25118a0abe6118a23ce5f76e5ef Mon Sep 17 00:00:00 2001 From: Davide Tantillo Date: Wed, 25 Jun 2025 15:13:50 +0200 Subject: [PATCH] [ts] 4.3 porting - Fix SkeletonBinary. --- spine-ts/spine-core/src/SkeletonBinary.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-ts/spine-core/src/SkeletonBinary.ts b/spine-ts/spine-core/src/SkeletonBinary.ts index 38746483f..45c0e0937 100644 --- a/spine-ts/spine-core/src/SkeletonBinary.ts +++ b/spine-ts/spine-core/src/SkeletonBinary.ts @@ -229,8 +229,8 @@ export class SkeletonBinary { default: to = null; } if (!to) continue; - to.offset = input.readFloat() * scale; - to.max = input.readFloat() * scale; + to.offset = input.readFloat() * toScale; + to.max = input.readFloat() * toScale; to.scale = input.readFloat() * toScale / fromScale; from.to[t] = to; }