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); }