Explorar el Código

MeshStandardMaterial: metalness default to 0.5. See #7594.

Mr.doob hace 9 años
padre
commit
510afdf58c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/materials/MeshStandardMaterial.js

+ 1 - 1
src/materials/MeshStandardMaterial.js

@@ -66,7 +66,7 @@ THREE.MeshStandardMaterial = function ( parameters ) {
 
 	this.color = new THREE.Color( 0xffffff ); // diffuse
 	this.roughness = 0.5;
-	this.metalness = 0;
+	this.metalness = 0.5;
 
 	this.emissive = new THREE.Color( 0x000000 );