diff --git a/spine-csharp/src/AnimationState.cs b/spine-csharp/src/AnimationState.cs index 1f06c3af7..5f7f5e2d3 100644 --- a/spine-csharp/src/AnimationState.cs +++ b/spine-csharp/src/AnimationState.cs @@ -264,7 +264,7 @@ namespace Spine { } else { mix = to.mixTime / to.mixDuration; if (mix > 1) mix = 1; - if (blend != MixBlend.First) blend = from.mixBlend; // Track 0 ignores frack mix blend. + if (blend != MixBlend.First) blend = from.mixBlend; // Track 0 ignores track mix blend. } var eventBuffer = mix < from.eventThreshold ? this.events : null;