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