[libgdx] Fixed ScaleYTimeline.

This commit is contained in:
Nathan Sweet 2023-12-24 08:49:00 -04:00
parent 5ffdcdb1e6
commit f656d98355

View File

@ -826,7 +826,7 @@ public class Animation {
MixDirection direction) {
Bone bone = skeleton.bones.get(boneIndex);
if (bone.active) bone.scaleY = getScaleValue(time, alpha, blend, direction, bone.scaleX, bone.data.scaleY);
if (bone.active) bone.scaleY = getScaleValue(time, alpha, blend, direction, bone.scaleY, bone.data.scaleY);
}
}