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; }