Modify physical lighting model.

This commit is contained in:
kovacsv 2021-10-30 09:31:11 +02:00
parent 5ae10403fa
commit 00daf22067
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 KiB

After

Width:  |  Height:  |  Size: 181 KiB

View File

@ -211,7 +211,7 @@ OV.ShadingModel = class
this.scene.environment = null;
} else if (this.type === OV.ShadingModelType.Physical) {
this.ambientLight.color.set (0x000000);
this.directionalLight.color.set (0x555555);
this.directionalLight.color.set (0x666666);
this.scene.environment = this.environment;
}
}