Browse Source

Clean up.

Mr.doob 10 years ago
parent
commit
b882201830
1 changed files with 2 additions and 0 deletions
  1. 2 0
      examples/js/exporters/OBJExporter.js

+ 2 - 0
examples/js/exporters/OBJExporter.js

@@ -136,7 +136,9 @@ THREE.OBJExporter.prototype = {
 		};
 		};
 
 
 		object.traverse( function ( child ) {
 		object.traverse( function ( child ) {
+
 			if ( child instanceof THREE.Mesh ) parseMesh( child );
 			if ( child instanceof THREE.Mesh ) parseMesh( child );
+
 		} );
 		} );
 
 
 		return output;
 		return output;