Browse Source

Update the roughness and metalness default unifoorm

Marco Fugaro 5 years ago
parent
commit
ec6db5af77
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/renderers/shaders/ShaderLib.js

+ 2 - 2
src/renderers/shaders/ShaderLib.js

@@ -94,8 +94,8 @@ var ShaderLib = {
 			UniformsLib.lights,
 			UniformsLib.lights,
 			{
 			{
 				emissive: { value: new Color( 0x000000 ) },
 				emissive: { value: new Color( 0x000000 ) },
-				roughness: { value: 0.5 },
-				metalness: { value: 0.5 },
+				roughness: { value: 1.0 },
+				metalness: { value: 0.0 },
 				envMapIntensity: { value: 1 } // temporary
 				envMapIntensity: { value: 1 } // temporary
 			}
 			}
 		] ),
 		] ),