We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570e2a3 commit f3d009dCopy full SHA for f3d009d
frameworks/js-bindings/bindings/script/studio/jsb_cocos2d_studio.js
@@ -44,6 +44,12 @@ ccs.InnerActionType = {
44
SingleFrame: 2
45
};
46
47
+ccs.AnimationInfo = function (name, startIndex, endIndex) {
48
+ this.name = name || "";
49
+ this.startIndex = startIndex != undefined ? startIndex : 0;
50
+ this.endIndex = endIndex != undefined ? endIndex : 0;
51
+};
52
+
53
// Armature
54
if(ccs.Armature){
55
ccs.Armature.prototype.setBody = function( body ) {
0 commit comments