Browse Source

PCDLoader: Skip empty lines in ASCII files

Mugen87 7 years ago
parent
commit
82df1a4771
1 changed files with 2 additions and 0 deletions
  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 ) {