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(); }