浏览代码

[csharp] Ported AnimationState change

badlogic 8 年之前
父节点
当前提交
7af22538e2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      spine-csharp/src/AnimationState.cs

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

@@ -176,7 +176,7 @@ namespace Spine {
 				float mix = current.alpha;
 				if (current.mixingFrom != null)
 					mix *= ApplyMixingFrom(current, skeleton);
-				else if (current.trackTime >= current.trackEnd) //
+				else if (current.trackTime >= current.trackEnd && current.next == null) //
 					mix = 0; // Set to setup pose the last time the entry will be applied.
 
 				// Apply current entry.