diff --git a/spine-csharp/src/PhysicsConstraint.cs b/spine-csharp/src/PhysicsConstraint.cs index 1ab3000a9..bb14f1404 100644 --- a/spine-csharp/src/PhysicsConstraint.cs +++ b/spine-csharp/src/PhysicsConstraint.cs @@ -175,7 +175,7 @@ namespace Spine { } if (a >= t) { d = (float)Math.Pow(damping, 60 * t); - float m = massInverse * t, e = strength, w = wind * f, g = (Bone.yDown ? -gravity : gravity) * f; + float m = massInverse * t, e = strength, w = wind * f * skeleton.ScaleX, g = (Bone.yDown ? -gravity : gravity) * f * skeleton.ScaleY; do { if (x) { xVelocity += (w - xOffset * e) * m; diff --git a/spine-csharp/src/package.json b/spine-csharp/src/package.json index 3d4bb86eb..4ea5e9f60 100644 --- a/spine-csharp/src/package.json +++ b/spine-csharp/src/package.json @@ -2,7 +2,7 @@ "name": "com.esotericsoftware.spine.spine-csharp", "displayName": "spine-csharp Runtime", "description": "This plugin provides the spine-csharp core runtime.", - "version": "4.2.33", + "version": "4.2.34", "unity": "2018.3", "author": { "name": "Esoteric Software",