Browse Source

Fixed envmap_fragment typo.

Mr.doob 10 years ago
parent
commit
8cfe69992c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/shaders/ShaderChunk/envmap_fragment.glsl

+ 1 - 1
src/renderers/shaders/ShaderChunk/envmap_fragment.glsl

@@ -47,7 +47,7 @@
 
 	#ifdef ENVMAP_BLENDING_MULTIPLY
 
-		outgoingLight = mix( outgoingLight, outgoingLight. * envColor.xyz, specularStrength * reflectivity );
+		outgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity );
 
 	#elif defined( ENVMAP_BLENDING_MIX )