提交 00d3fdca 编写于 作者: M Mr.doob 提交者: GitHub

Merge pull request #11809 from Mugen87/dev

ColladaLoader2: Fix buildVisualScene
......@@ -3097,7 +3097,17 @@ THREE.ColladaLoader.prototype = {
var child = children[ i ];
group.add( getNode( child.id ) );
if ( child.id === null ) {
group.add( buildNode( child ) );
} else {
// if there is an ID, let's try to get the finished build (e.g. joints are already build)
group.add( getNode( child.id ) );
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册