From 88ef4bc5f76d2552ed4202594476b5e3b49ad717 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Wed, 30 Nov 2022 18:22:50 +0100 Subject: [PATCH] [csharp] Port of commit 4bad9ec2. Fixed typo in transform constraint shortcut for 0 mix. --- spine-csharp/src/TransformConstraint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/TransformConstraint.cs b/spine-csharp/src/TransformConstraint.cs index b80804429..594ca7799 100644 --- a/spine-csharp/src/TransformConstraint.cs +++ b/spine-csharp/src/TransformConstraint.cs @@ -80,7 +80,7 @@ namespace Spine { } 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();