auto-git:

[change] src/runtime-three/runtime-project-time.ts
This commit is contained in:
2026-04-22 12:36:07 +02:00
parent 41e87b1b21
commit 4b5ce67ecd

View File

@@ -731,20 +731,27 @@ function resolveTimeDrivenBackground(
const nightBackground = timeOfDay.night.background;
const twilightNightOpacity =
weights.night + weights.dawn * 0.5 + weights.dusk * 0.5;
const daylikeImageBackground = resolvePreferredDaylikeImageBackground([
{
background: dayBackground,
weight: weights.day
},
{
background: dawnBackground,
weight: weights.dawn
},
{
background: duskBackground,
weight: weights.dusk
}
]);
const daylikeImageBackground =
weights.dawn > 1e-6 && hasConfiguredImageBackground(dawnBackground)
? cloneWorldBackgroundSettings(dawnBackground)
: weights.dusk > 1e-6 && hasConfiguredImageBackground(duskBackground)
? cloneWorldBackgroundSettings(duskBackground)
: hasConfiguredImageBackground(dayBackground)
? cloneWorldBackgroundSettings(dayBackground)
: resolvePreferredDaylikeImageBackground([
{
background: dayBackground,
weight: weights.day
},
{
background: dawnBackground,
weight: weights.dawn
},
{
background: duskBackground,
weight: weights.dusk
}
]);
if (daylikeImageBackground !== null) {
const nightOverlay =