From e65e6b730e69530440c69f3df4895a5fc9e1c020 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 7 Apr 2026 06:43:02 +0200 Subject: [PATCH] Add water reflection camera to RuntimeHost class --- src/runtime-three/runtime-host.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime-three/runtime-host.js b/src/runtime-three/runtime-host.js index c3a7300f..fba54bd5 100644 --- a/src/runtime-three/runtime-host.js +++ b/src/runtime-three/runtime-host.js @@ -25,6 +25,7 @@ export class RuntimeHost { localLightGroup = new Group(); brushGroup = new Group(); modelGroup = new Group(); + waterReflectionCamera = new PerspectiveCamera(); firstPersonController = new FirstPersonNavigationController(); orbitVisitorController = new OrbitVisitorNavigationController(); interactionSystem = new RuntimeInteractionSystem();