From d132fdfc0486a1ef108686542fdd16346dafc1f1 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Sun, 3 May 2026 14:11:31 +0900 Subject: [PATCH] Update ductRailSpotLights.ts --- .../frontend/src/world/room/objects/ductRailSpotLights.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/frontend/src/world/room/objects/ductRailSpotLights.ts b/packages/frontend/src/world/room/objects/ductRailSpotLights.ts index 920df49303..77270e644e 100644 --- a/packages/frontend/src/world/room/objects/ductRailSpotLights.ts +++ b/packages/frontend/src/world/room/objects/ductRailSpotLights.ts @@ -87,12 +87,12 @@ export const ductRailSpotLights = defineObject({ const applyLightBrightness = () => { for (const light of lights) { - light.intensity = 1 * options.lightBrightness * WORLD_SCALE * WORLD_SCALE; - light.range = cm(300) * options.lightBrightness; + light.intensity = 2 * options.lightBrightness * WORLD_SCALE * WORLD_SCALE; + light.range = cm(300); } for (const lamp of lamps) { const emissive = lamp.material as BABYLON.PBRMaterial; - emissive.emissiveIntensity = options.lightBrightness * 10; + emissive.emissiveIntensity = options.lightBrightness * 20; } };