2
0
Эх сурвалжийг харах

MeshStandardMaterial: metalness default to 0.5. See #7594.

Mr.doob 9 жил өмнө
parent
commit
510afdf58c

+ 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 );