auto-git:

[change] src/rendering/world-background-renderer.ts
This commit is contained in:
2026-04-22 13:05:21 +02:00
parent 8e1733ab25
commit 76f1b10a6a

View File

@@ -78,7 +78,7 @@ export function resolveWorldEnvironmentState(
overlayOpacity < 1 - NIGHT_BACKGROUND_EPSILON
) {
return {
texture: overlayOpacity < 0.5 ? baseTexture : overlayTexture,
texture: baseTexture,
intensity: lerp(baseIntensity, overlayIntensity, overlayOpacity)
};
}