From 77f9c02785e5dc198c9a18f2b62c23f52a72e8e6 Mon Sep 17 00:00:00 2001 From: dsehnal <david.sehnal@gmail.com> Date: Mon, 29 Nov 2021 18:01:41 +0100 Subject: [PATCH] udpate presets --- src/mol-util/material.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mol-util/material.ts b/src/mol-util/material.ts index d22039029..a374e72a7 100644 --- a/src/mol-util/material.ts +++ b/src/mol-util/material.ts @@ -39,8 +39,9 @@ export namespace Material { ...info, presets: [ [{ metalness: 0, roughness: 1 }, 'Matte'], - [{ metalness: 0.5, roughness: 0.5 }, 'Metallic'], - [{ metalness: 0, roughness: 0.25 }, 'Plastic'], + [{ metalness: 0, roughness: 0.2 }, 'Plastic'], + [{ metalness: 0, roughness: 0.6 }, 'Glossy'], + [{ metalness: 1.0, roughness: 0.6 }, 'Metallic'], ] }); } -- GitLab