From ea5849764dec4495fcb6ebd3e0a4445d4dd07edd Mon Sep 17 00:00:00 2001 From: Randolph Burt Date: Thu, 11 Apr 2013 20:56:00 +0100 Subject: [PATCH] Fix parsing Animation/slots in SkeletonJson.cs --- spine-csharp/src/SkeletonJson.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/SkeletonJson.cs b/spine-csharp/src/SkeletonJson.cs index e307396dd..fbec2c96e 100644 --- a/spine-csharp/src/SkeletonJson.cs +++ b/spine-csharp/src/SkeletonJson.cs @@ -228,7 +228,7 @@ namespace Spine { Dictionary timelineMap = (Dictionary)entry.Value; foreach (KeyValuePair timelineEntry in timelineMap) { - List> values = (List>)timelineEntry.Value; + List values = (List)timelineEntry.Value; String timelineName = (String)timelineEntry.Key; if (timelineName.Equals(TIMELINE_COLOR)) { ColorTimeline timeline = new ColorTimeline(values.Count);