Эх сурвалжийг харах

[csharp] Fix missing port. https://github.com/EsotericSoftware/spine-runtimes/commit/be583ba96d00a2c71018c907ab8531717368e4b8

John 8 жил өмнө
parent
commit
53d80a4020

+ 1 - 1
spine-csharp/src/AnimationState.cs

@@ -706,7 +706,7 @@ namespace Spine {
 					for (int ii = mixingToLast; ii >= 0; ii--) {
 						var entry = mixingTo[ii];
 						if (!entry.HasTimeline(id)) {
-							timelineDipMixItems[i] = entry;
+							if (entry.mixDuration > 0) timelineDipMixItems[i] = entry;
 							goto outer; // continue outer;
 						}
 					}