Explorar el Código

PCDLoader: Skip empty lines in ASCII files

Mugen87 hace 7 años
padre
commit
82df1a4771
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      examples/js/loaders/PCDLoader.js

+ 2 - 0
examples/js/loaders/PCDLoader.js

@@ -167,6 +167,8 @@ THREE.PCDLoader.prototype = {
 
 			for ( var i = 0, l = lines.length; i < l; i ++ ) {
 
+				if ( lines[ i ] === '' ) continue;
+
 				var line = lines[ i ].split( ' ' );
 
 				if ( offset.x !== undefined ) {