Browse Source

ColladaLoader2: Format

Mugen87 8 years ago
parent
commit
69accc039a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/loaders/ColladaLoader2.js

+ 1 - 1
examples/js/loaders/ColladaLoader2.js

@@ -1979,7 +1979,7 @@ THREE.ColladaLoader.prototype = {
 			// build geometry
 
 			if ( position.array.length > 0 ) geometry.addAttribute( 'position', new THREE.Float32BufferAttribute( position.array, position.stride ) );
-			if ( normal.array.length > 0 ) geometry.addAttribute( 'normal', new THREE.Float32BufferAttribute( normal.array,normal.stride ) );
+			if ( normal.array.length > 0 ) geometry.addAttribute( 'normal', new THREE.Float32BufferAttribute( normal.array, normal.stride ) );
 			if ( color.array.length > 0 ) geometry.addAttribute( 'color', new THREE.Float32BufferAttribute( color.array, color.stride ) );
 			if ( uv.array.length > 0 ) geometry.addAttribute( 'uv', new THREE.Float32BufferAttribute( uv.array, uv.stride ) );