From a6787a7ecb3160e27e99650e8d807614008316d6 Mon Sep 17 00:00:00 2001 From: Tom Boullay Date: Wed, 27 May 2026 00:09:26 +0200 Subject: [PATCH] chore: tune lighting and world plane material --- src/data/world/lightingConfig.ts | 14 +++++++------- src/world/WorldPlane.tsx | 3 ++- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/data/world/lightingConfig.ts b/src/data/world/lightingConfig.ts index ab7ff4f..1926083 100644 --- a/src/data/world/lightingConfig.ts +++ b/src/data/world/lightingConfig.ts @@ -1,14 +1,14 @@ -export const AMBIENT_LIGHT_COLOR = "#dbeafe"; -export const SUN_LIGHT_COLOR = "#fff7ed"; +export const AMBIENT_LIGHT_COLOR = "#dfe7d8"; +export const SUN_LIGHT_COLOR = "#ffe2bf"; export const LIGHTING_DEFAULTS = { ambientColor: AMBIENT_LIGHT_COLOR, - ambientIntensity: 1.8, + ambientIntensity: 0.9, sunColor: SUN_LIGHT_COLOR, - sunIntensity: 2.8, - sunX: 60, - sunY: 80, - sunZ: 30, + sunIntensity: 2.2, + sunX: 70, + sunY: 45, + sunZ: 35, }; export const AMBIENT_INTENSITY_MIN = 0; diff --git a/src/world/WorldPlane.tsx b/src/world/WorldPlane.tsx index 53a71cb..b148dbc 100644 --- a/src/world/WorldPlane.tsx +++ b/src/world/WorldPlane.tsx @@ -11,10 +11,11 @@ export function WorldPlane(): React.JSX.Element | null { - + ); }