From 2eef6ca7c4e095a7d18bdac234f434202248f4e2 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Tue, 5 Jan 2021 15:33:50 +1100 Subject: [PATCH] Fixed gemstone dice colour --- src/dice/gemstone/GemstoneDice.js | 2 +- src/docs/releaseNotes/v1.7.0.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dice/gemstone/GemstoneDice.js b/src/dice/gemstone/GemstoneDice.js index fc20df7..1d2b0b3 100644 --- a/src/dice/gemstone/GemstoneDice.js +++ b/src/dice/gemstone/GemstoneDice.js @@ -28,7 +28,7 @@ class GemstoneDice extends Dice { pbr.useMetallnessFromMetallicTextureBlue = true; pbr.subSurface.isTranslucencyEnabled = true; - pbr.subSurface.translucencyIntensity = 1.0; + pbr.subSurface.translucencyIntensity = 0.2; pbr.subSurface.minimumThickness = 5; pbr.subSurface.maximumThickness = 10; pbr.subSurface.tintColor = new Color3(190 / 255, 0, 220 / 255); diff --git a/src/docs/releaseNotes/v1.7.0.md b/src/docs/releaseNotes/v1.7.0.md index 9a318a0..e4eba3c 100644 --- a/src/docs/releaseNotes/v1.7.0.md +++ b/src/docs/releaseNotes/v1.7.0.md @@ -49,7 +49,7 @@ In this update the fog tool has been changed to hopefully help work better with - Fixed crash when sometimes interacting with the page while it is loading. - Fixed crash when sometimes zooming out too far with a custom token on the map. - Fixed a bug where the drawing erase tool could still be used outside of the drawing tool. -- Fixed a bug causing the colour of the glass dice to be wrong. +- Fixed a bug causing the colour of the glass and gemstone dice to be wrong. ---