[csharp] Port of commit 4bad9ec2. Fixed typo in transform constraint shortcut for 0 mix.

This commit is contained in:
Harald Csaszar 2022-11-30 18:22:50 +01:00
parent 4bad9ec25e
commit 88ef4bc5f7

View File

@ -80,7 +80,7 @@ namespace Spine {
} }
public void Update () { 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.local) {
if (data.relative) if (data.relative)
ApplyRelativeLocal(); ApplyRelativeLocal();