浏览代码

MeshStandardMaterial: metalness default to 0.5. See #7594.

Mr.doob 9 年之前
父节点
当前提交
510afdf58c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 );