Fixed inherit scale/rotation not being initialized.

This commit is contained in:
NathanSweet 2016-01-11 02:18:31 +01:00
parent 50282a0209
commit f748b5b9bc

View File

@ -40,7 +40,7 @@ public class BoneData {
float x, y;
float rotation;
float scaleX = 1, scaleY = 1;
boolean inheritScale, inheritRotation;
boolean inheritScale = true, inheritRotation = true;
// Nonessential.
final Color color = new Color(0.61f, 0.61f, 0.61f, 1);