From f0f78a11cb2a8f55b96359851d9df623b2f771a1 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Mon, 4 May 2026 10:47:14 +0900 Subject: [PATCH] Update woodRingsPendantLight.ts --- .../frontend/src/world/room/objects/woodRingsPendantLight.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts b/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts index 6b3d32e5c5..248fc70231 100644 --- a/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts +++ b/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts @@ -96,10 +96,10 @@ export const woodRingsPendantLight = defineObject({ applyLightColor(); const applyLightBrightness = () => { - light.intensity = 1 * options.lightBrightness * WORLD_SCALE * WORLD_SCALE; + light.intensity = 2 * options.lightBrightness * WORLD_SCALE * WORLD_SCALE; light.range = cm(200) * getLightRangeFactorByGraphicsQuality(graphicsQuality); const emissive = lamp.material as BABYLON.PBRMaterial; - emissive.emissiveIntensity = options.lightBrightness * 10; + emissive.emissiveIntensity = options.lightBrightness * 20; }; applyLightBrightness();