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 673fdc7 commit 6e125dfCopy full SHA for 6e125df
examples/js/loaders/FBXLoader.js
@@ -2349,15 +2349,17 @@ THREE.FBXLoader = ( function () {
2349
2350
var rawClips = this.parseClips();
2351
2352
- if ( rawClips === undefined ) return;
+ if ( rawClips !== undefined ) {
2353
2354
- for ( var key in rawClips ) {
+ for ( var key in rawClips ) {
2355
2356
- var rawClip = rawClips[ key ];
+ var rawClip = rawClips[ key ];
2357
2358
- var clip = this.addClip( rawClip );
+ var clip = this.addClip( rawClip );
2359
2360
- animationClips.push( clip );
+ animationClips.push( clip );
2361
+
2362
+ }
2363
2364
}
2365
0 commit comments