Browse Source

Fixed clearcoatRoughness camel case.

Mr.doob 6 years ago
parent
commit
94467a2d00
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/shaders/ShaderChunk/lights_fragment_maps.glsl.js

+ 1 - 1
src/renderers/shaders/ShaderChunk/lights_fragment_maps.glsl.js

@@ -29,7 +29,7 @@ export default /* glsl */`
 
 
 	#ifdef CLEARCOAT
 	#ifdef CLEARCOAT
 
 
-		clearcoatRadiance += getLightProbeIndirectRadiance( /*specularLightProbe,*/ geometry.viewDir, geometry.clearcoatNormal, material.clearCoatRoughness, maxMipLevel );
+		clearcoatRadiance += getLightProbeIndirectRadiance( /*specularLightProbe,*/ geometry.viewDir, geometry.clearcoatNormal, material.clearcoatRoughness, maxMipLevel );
 
 
 	#endif
 	#endif