浏览代码

MeshStandardMaterial: Changed roughness and metalness default values.

Mr.doob 5 年之前
父节点
当前提交
edec210cf9
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/materials/MeshStandardMaterial.js

+ 2 - 2
src/materials/MeshStandardMaterial.js

@@ -64,8 +64,8 @@ function MeshStandardMaterial( parameters ) {
 	this.type = 'MeshStandardMaterial';
 
 	this.color = new Color( 0xffffff ); // diffuse
-	this.roughness = 0.5;
-	this.metalness = 0.5;
+	this.roughness = 1.0;
+	this.metalness = 0.0;
 
 	this.map = null;