From a8586fe224d78107a469b56abb8934e281dcbf54 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Sun, 3 May 2026 14:15:08 +0900 Subject: [PATCH] Update wallMountSpotLight.ts --- .../frontend/src/world/room/objects/wallMountSpotLight.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/world/room/objects/wallMountSpotLight.ts b/packages/frontend/src/world/room/objects/wallMountSpotLight.ts index ada2fceed8..36f20f862c 100644 --- a/packages/frontend/src/world/room/objects/wallMountSpotLight.ts +++ b/packages/frontend/src/world/room/objects/wallMountSpotLight.ts @@ -82,9 +82,9 @@ export const wallMountSpotLight = defineObject({ const applyLightBrightness = () => { light.intensity = 1 * options.lightBrightness * WORLD_SCALE * WORLD_SCALE; - light.range = cm(200) * options.lightBrightness; + light.range = cm(200); const emissive = lamp.material as BABYLON.PBRMaterial; - emissive.emissiveIntensity = options.lightBrightness * 10; + emissive.emissiveIntensity = options.lightBrightness * 20; }; applyLightBrightness();