From 0685ddc0d5ceffb9a4f5ead12de83fbb2029c4bd 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 b1af2ef..4922a45 100644 --- a/src/viewer.ts +++ b/src/viewer.ts @@ -256,7 +256,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;