[libgdx] Fixed typo in transform constraint shortcut for 0 mix.

This commit is contained in:
Nathan Sweet 2022-11-30 12:57:49 -04:00
parent 18e2fadbf0
commit 4bad9ec25e

View File

@ -82,7 +82,7 @@ public class TransformConstraint implements Updatable {
/** Applies the constraint to the constrained bones. */
public void update () {
if (mixRotate == 0 && mixX == 0 && mixY == 0 && mixScaleX == 0 && mixScaleX == 0 && mixShearY == 0) return;
if (mixRotate == 0 && mixX == 0 && mixY == 0 && mixScaleX == 0 && mixScaleY == 0 && mixShearY == 0) return;
if (data.local) {
if (data.relative)
applyRelativeLocal();