From f8abf35b8eb124310439f21a99c74a497dbb4f66 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Wed, 15 May 2019 16:23:04 +0200 Subject: [PATCH] [csharp] See #1352, Fixed a typo in last commit to make it compile (hash 6341fbbd, "the last subsequent attachment timeline always mixes out to the setup pose.") --- spine-csharp/src/AnimationState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/AnimationState.cs b/spine-csharp/src/AnimationState.cs index e223063a3..f07d274e3 100644 --- a/spine-csharp/src/AnimationState.cs +++ b/spine-csharp/src/AnimationState.cs @@ -301,7 +301,7 @@ namespace Spine { case AnimationState.Subsequent: if (!attachments && timeline is AttachmentTimeline) { if ((timelineMode[i] & AnimationState.NotLast) == AnimationState.NotLast) continue; - blend = MixBlend.setup; + blend = MixBlend.Setup; } if (!drawOrder && timeline is DrawOrderTimeline) continue; timelineBlend = blend;