mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-19 00:06:42 +08:00
[csharp] Fixed MeshAttachment copies not copying rotation. Closes #1452.
This commit is contained in:
parent
a6273e2a3f
commit
2e9dd67e73
@ -160,6 +160,8 @@ namespace Spine {
|
|||||||
copy.regionHeight = regionHeight;
|
copy.regionHeight = regionHeight;
|
||||||
copy.regionOriginalWidth = regionOriginalWidth;
|
copy.regionOriginalWidth = regionOriginalWidth;
|
||||||
copy.regionOriginalHeight = regionOriginalHeight;
|
copy.regionOriginalHeight = regionOriginalHeight;
|
||||||
|
copy.RegionRotate = RegionRotate;
|
||||||
|
copy.RegionDegrees = RegionDegrees;
|
||||||
copy.Path = Path;
|
copy.Path = Path;
|
||||||
copy.r = r;
|
copy.r = r;
|
||||||
copy.g = g;
|
copy.g = g;
|
||||||
@ -195,6 +197,8 @@ namespace Spine {
|
|||||||
mesh.regionHeight = regionHeight;
|
mesh.regionHeight = regionHeight;
|
||||||
mesh.regionOriginalWidth = regionOriginalWidth;
|
mesh.regionOriginalWidth = regionOriginalWidth;
|
||||||
mesh.regionOriginalHeight = regionOriginalHeight;
|
mesh.regionOriginalHeight = regionOriginalHeight;
|
||||||
|
mesh.RegionDegrees = RegionDegrees;
|
||||||
|
mesh.RegionRotate = RegionRotate;
|
||||||
|
|
||||||
mesh.Path = Path;
|
mesh.Path = Path;
|
||||||
mesh.r = r;
|
mesh.r = r;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user