提交 08b743bf 编写于 作者: M Mr.doob

ColladaLoader: Hack for Mesh.parse showstopper. Fixes #5828.

上级 4e86814a
......@@ -2805,6 +2805,14 @@ THREE.ColladaLoader = function () {
this.geometry3js = new THREE.Geometry();
if ( this.vertices === null ) {
// TODO (mrdoob): Study case when this is null (carrier.dae)
return this;
}
var vertexData = sources[ this.vertices.input['POSITION'].source ].data;
for ( var i = 0; i < vertexData.length; i += 3 ) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册