From 898aa2e3f7ac67def07a4209f222e39ca13b3c69 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 14:53:57 +0200 Subject: [PATCH] auto-git: [change] src/viewport-three/viewport-host.ts --- src/viewport-three/viewport-host.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/viewport-three/viewport-host.ts b/src/viewport-three/viewport-host.ts index d13a40c9..ef439816 100644 --- a/src/viewport-three/viewport-host.ts +++ b/src/viewport-three/viewport-host.ts @@ -688,6 +688,9 @@ export class ViewportHost { this.scene.add(this.axesHelper); this.scene.add(this.ambientLight); this.scene.add(this.sunLight); + this.scene.add(this.sunLight.target); + this.scene.add(this.moonLight); + this.scene.add(this.moonLight.target); this.scene.add(this.localLightGroup); this.scene.add(this.lightVolumeGroup); this.scene.add(this.brushGroup); @@ -718,6 +721,8 @@ export class ViewportHost { } } ); + this.moonLight.visible = false; + this.moonLight.intensity = 0; this.applyViewModePose(); }