提交 1d55060f 编写于 作者: S shelbyspeegle

ColladaLoader - #13365 instance node names now match their associated library...

ColladaLoader - #13365 instance node names now match their associated library nodes name, vs 'instance_#'.
上级 69ebfb9a
......@@ -3306,7 +3306,12 @@ THREE.ColladaLoader.prototype = {
}
object.name = ( type === 'JOINT' ) ? data.sid : data.name;
if ( object.name === '' ) {
object.name = ( type === 'JOINT' ) ? data.sid : data.name;
}
object.matrix.copy( matrix );
object.matrix.decompose( object.position, object.quaternion, object.scale );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册