From 907b2f4d59a3a5c1e4ff1493e113da9c71189109 Mon Sep 17 00:00:00 2001 From: Sean Boult <996134+Hacksore@users.noreply.github.com> Date: Sat, 16 Sep 2023 11:08:46 -0500 Subject: [PATCH] Fix lighting --- examples/index.html | 2 +- src/viewer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/index.html b/examples/index.html index c526490..5619843 100644 --- a/examples/index.html +++ b/examples/index.html @@ -129,7 +129,7 @@

Viewport

Light

- +
diff --git a/src/viewer.ts b/src/viewer.ts index b84516b..1519a69 100644 --- a/src/viewer.ts +++ b/src/viewer.ts @@ -279,7 +279,7 @@ export class SkinViewer { */ readonly playerWrapper: Group; - readonly globalLight: AmbientLight = new AmbientLight(0xffffff, 0.4); + readonly globalLight: AmbientLight = new AmbientLight(0xffffff, 3); readonly cameraLight: PointLight = new PointLight(0xffffff, 0.6); readonly composer: EffectComposer;