[libgdx] Fixed scale timelines not combining key scale with setup pose.

This commit is contained in:
Nathan Sweet 2020-08-20 14:08:53 -07:00
parent 8476b55fee
commit 21ebb2db4b

View File

@ -614,6 +614,8 @@ public class Animation {
x = getBezierValue(time, i, VALUE1, curveType - BEZIER);
y = getBezierValue(time, i, VALUE2, curveType + BEZIER_SIZE - BEZIER);
}
x *= bone.data.scaleX;
y *= bone.data.scaleY;
if (alpha == 1) {
if (blend == add) {