[libgdx] Fixed ShearYTimeline typo.

This commit is contained in:
Nathan Sweet 2024-03-28 11:56:25 -04:00
parent ad2b70c871
commit 1a83e967b3

View File

@ -941,7 +941,7 @@ public class Animation {
MixDirection direction) { MixDirection direction) {
Bone bone = skeleton.bones.get(boneIndex); Bone bone = skeleton.bones.get(boneIndex);
if (bone.active) bone.shearY = getRelativeValue(time, alpha, blend, bone.shearX, bone.data.shearY); if (bone.active) bone.shearY = getRelativeValue(time, alpha, blend, bone.shearY, bone.data.shearY);
} }
} }