mirror of
https://github.com/photonstorm/phaser
synced 2024-11-21 20:23:19 +00:00
SpineGameObject.setSkeletonFromJSON
has been fixed so it now passes the parameters in the correct order to the setSkeleton
method. Fix #6585
This commit is contained in:
parent
0eb7595c06
commit
364dad966c
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ var SpineGameObject = new Class({
|
|||
*/
|
||||
setSkeletonFromJSON: function (atlasDataKey, skeletonJSON, animationName, loop)
|
||||
{
|
||||
return this.setSkeleton(atlasDataKey, skeletonJSON, animationName, loop);
|
||||
return this.setSkeleton(atlasDataKey, animationName, loop, skeletonJSON);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue