소스 검색

MeshStandardMaterial: Changed roughness and metalness default values.

Mr.doob 6 년 전
부모
커밋
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;
 

粤ICP备19079148号