[csharp] Port of commit 7bd2f2e: Transform constraint scale is 1 if omitted.

This commit is contained in:
Harald Csaszar 2025-08-20 21:15:34 +02:00
parent f2d9edd830
commit 4add7da011
2 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ namespace Spine {
}
to.offset = GetFloat(toEntry, "offset", 0) * toScale;
to.max = GetFloat(toEntry, "max", 1) * toScale;
to.scale = GetFloat(toEntry, "scale") * (toScale / fromScale);
to.scale = GetFloat(toEntry, "scale", 1) * (toScale / fromScale);
from.to.Add(to);
}
}

View File

@ -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.3.7",
"version": "4.3.8",
"unity": "2018.3",
"author": {
"name": "Esoteric Software",