auto-git:

[change] src/viewport-three/viewport-host.ts
This commit is contained in:
2026-04-22 14:53:57 +02:00
parent 7f1af9bf1c
commit 898aa2e3f7

View File

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