You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameters do not line up in the line return this.setSkeleton(atlasDataKey, skeletonJSON, animationName, loop) in the spine plugin.
Here is what the called function looks like setSkeleton: function (atlasDataKey, animationName, loop, skeletonJSON).
As you can see, the parameter skeletonJSON should be at the end of the call.
Example Test Code
spine.setSkeleton("raptor", skeletonJSON, "roar", false);
This code will result in the spine not playing an animation.
The text was updated successfully, but these errors were encountered:
Thank you for submitting this issue. We have fixed this and the fix has been pushed to the master branch. It will be part of the next release. If you get time to build and test it for yourself we would appreciate that.
Version
Description
The parameters do not line up in the line
return this.setSkeleton(atlasDataKey, skeletonJSON, animationName, loop)
in the spine plugin.Here is what the called function looks like
setSkeleton: function (atlasDataKey, animationName, loop, skeletonJSON)
.As you can see, the parameter
skeletonJSON
should be at the end of the call.Example Test Code
spine.setSkeleton("raptor", skeletonJSON, "roar", false);
This code will result in the spine not playing an animation.
The text was updated successfully, but these errors were encountered: