From 3ba902c2b65540e9c29e9b055afb56c7391d3e57 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Sun, 3 May 2026 14:02:59 +0900 Subject: [PATCH] Update ductRailSpotLights.ts --- packages/frontend/src/world/room/objects/ductRailSpotLights.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/world/room/objects/ductRailSpotLights.ts b/packages/frontend/src/world/room/objects/ductRailSpotLights.ts index e375361a5d..920df49303 100644 --- a/packages/frontend/src/world/room/objects/ductRailSpotLights.ts +++ b/packages/frontend/src/world/room/objects/ductRailSpotLights.ts @@ -67,7 +67,7 @@ export const ductRailSpotLights = defineObject({ for (const lamp of lamps) { const light = new BABYLON.SpotLight('', new BABYLON.Vector3(cm(0), cm(0), 0), new BABYLON.Vector3(0, -1, 0), Math.PI / 1, 2, scene, room?.lightContainer != null); light.parent = lamp; - light.radius = cm(5); + light.radius = cm(8); if (room?.lightContainer != null) room.lightContainer.addLight(light); lights.push(light); }