File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
extensions/cocostudio/loader/parsers Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 6565 deferred : function ( json , resourcePath , action , file ) {
6666 var animationlist = json [ "Content" ] [ "Content" ] [ "AnimationList" ] ;
6767 var length = animationlist ? animationlist . length : 0 ;
68- for ( var i = 0 ; i < length ; i ++ ) {
69- var animationdata = animationlist [ i ] ;
70- var info = { name : null , startIndex : null , endIndex : null } ;
71- info . name = animationdata [ "Name" ] ;
72- info . startIndex = animationdata [ "StartIndex" ] ;
73- info . endIndex = animationdata [ "EndIndex" ] ;
74- action . addAnimationInfo ( info ) ;
75- }
68+ for ( var i = 0 ; i < length ; i ++ ) {
69+ var animationdata = animationlist [ i ] ;
70+ var info = { name : null , startIndex : null , endIndex : null } ;
71+ info . name = animationdata [ "Name" ] ;
72+ info . startIndex = animationdata [ "StartIndex" ] ;
73+ info . endIndex = animationdata [ "EndIndex" ] ;
74+ action . addAnimationInfo ( info ) ;
75+ }
7676 }
7777
7878 } ) ;
You can’t perform that action at this time.
0 commit comments