2
0
Mugen87 7 жил өмнө
parent
commit
28ae46a2e6

+ 2 - 1
examples/js/loaders/TDSLoader.js

@@ -354,7 +354,6 @@ THREE.TDSLoader.prototype = {
 
 				this.resetPosition( data );
 				this.readFaceArray( data, mesh );
-				geometry.computeVertexNormals();
 
 			} else if ( next === TEX_VERTS ) {
 
@@ -433,6 +432,8 @@ THREE.TDSLoader.prototype = {
 
 		this.endChunk( chunk );
 
+		geometry.computeVertexNormals();
+
 		return mesh;
 
 	},