提交 8c3b2341 编写于 作者: M Mr.doob

ColladaLoader2: Return if text is empty (out of memory?)

上级 39f349a5
......@@ -1387,6 +1387,12 @@ THREE.ColladaLoader.prototype = {
console.time( 'ColladaLoader' );
if ( text.length === 0 ) {
return { scene: new THREE.Scene() };
}
console.time( 'ColladaLoader: DOMParser' );
var xml = new DOMParser().parseFromString( text, 'application/xml' );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册