提交 47c02da5 编写于 作者: M Mr.doob

FBXLoader: Return empty animations array by default.

上级 4840c050
......@@ -2349,15 +2349,17 @@ THREE.FBXLoader = ( function () {
var rawClips = this.parseClips();
if ( rawClips === undefined ) return;
if ( rawClips !== undefined ) {
for ( var key in rawClips ) {
for ( var key in rawClips ) {
var rawClip = rawClips[ key ];
var rawClip = rawClips[ key ];
var clip = this.addClip( rawClip );
var clip = this.addClip( rawClip );
animationClips.push( clip );
animationClips.push( clip );
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册