@@ -169,7 +169,7 @@ function Loader( editor ) {
169169
170170 collada . scene . name = filename ;
171171
172- editor . addAnimation ( collada . scene , collada . animations ) ;
172+ editor . addAnimations ( collada . scene , collada . animations ) ;
173173 editor . execute ( new AddObjectCommand ( editor , collada . scene ) ) ;
174174
175175 } , false ) ;
@@ -210,7 +210,7 @@ function Loader( editor ) {
210210 var loader = new FBXLoader ( manager ) ;
211211 var object = loader . parse ( contents ) ;
212212
213- editor . addAnimation ( object , object . animations ) ;
213+ editor . addAnimations ( object , object . animations ) ;
214214 editor . execute ( new AddObjectCommand ( editor , object ) ) ;
215215
216216 } , false ) ;
@@ -234,7 +234,7 @@ function Loader( editor ) {
234234 var scene = result . scene ;
235235 scene . name = filename ;
236236
237- editor . addAnimation ( scene , result . animations ) ;
237+ editor . addAnimations ( scene , result . animations ) ;
238238 editor . execute ( new AddObjectCommand ( editor , scene ) ) ;
239239
240240 } ) ;
@@ -271,7 +271,7 @@ function Loader( editor ) {
271271 var scene = result . scene ;
272272 scene . name = filename ;
273273
274- editor . addAnimation ( scene , result . animations ) ;
274+ editor . addAnimations ( scene , result . animations ) ;
275275 editor . execute ( new AddObjectCommand ( editor , scene ) ) ;
276276
277277 } ) ;
@@ -370,7 +370,7 @@ function Loader( editor ) {
370370 mesh . mixer = new THREE . AnimationMixer ( mesh ) ;
371371 mesh . name = filename ;
372372
373- editor . addAnimation ( mesh , geometry . animations ) ;
373+ editor . addAnimations ( mesh , geometry . animations ) ;
374374 editor . execute ( new AddObjectCommand ( editor , mesh ) ) ;
375375
376376 } , false ) ;
@@ -682,7 +682,7 @@ function Loader( editor ) {
682682
683683 var scene = result . scene ;
684684
685- editor . addAnimation ( scene , result . animations ) ;
685+ editor . addAnimations ( scene , result . animations ) ;
686686 editor . execute ( new AddObjectCommand ( editor , scene ) ) ;
687687
688688 } ) ;
@@ -700,7 +700,7 @@ function Loader( editor ) {
700700
701701 var scene = result . scene ;
702702
703- editor . addAnimation ( scene , result . animations ) ;
703+ editor . addAnimations ( scene , result . animations ) ;
704704 editor . execute ( new AddObjectCommand ( editor , scene ) ) ;
705705
706706 } ) ;
0 commit comments