From a6b71503712819a94b468eb641d45e397ffb81a0 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Wed, 8 Apr 2026 18:08:06 +0900 Subject: [PATCH] Update engine.ts --- packages/frontend/src/utility/room/engine.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/frontend/src/utility/room/engine.ts b/packages/frontend/src/utility/room/engine.ts index a0ca854754..2a95a46384 100644 --- a/packages/frontend/src/utility/room/engine.ts +++ b/packages/frontend/src/utility/room/engine.ts @@ -513,8 +513,8 @@ export class RoomEngine { this.envMapOutdoor.level = this.time === 0 ? 0.5 : this.time === 1 ? 0.3 : 0.1; if (this.enableReflectionProbe) { - this.reflectionProbe = new BABYLON.ReflectionProbe('reflectionProbe', 512, this.scene); - this.reflectionProbe.position = new BABYLON.Vector3(0, 100/*cm*/, 0); + this.reflectionProbe = new BABYLON.ReflectionProbe('reflectionProbe', 128, this.scene, true, true, true); + this.reflectionProbe.position = new BABYLON.Vector3(0, 150/*cm*/, 0); this.reflectionProbe.refreshRate = 200; } @@ -1436,7 +1436,7 @@ export class RoomEngine { private turnOnRoomLight() { this.roomLight.intensity = 150000; - this.envMapIndoor.level = 0.3; + this.envMapIndoor.level = 0.5; } private turnOffRoomLight() {