From 95c87a75dd58a21093c3767b8a3eb7f7d23c9267 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 12 Apr 2026 14:10:41 +0200 Subject: [PATCH] auto-git: [change] src/app/App.tsx --- src/app/App.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 5d24f124..a14a1047 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -162,8 +162,10 @@ import { } from "../document/scene-document"; import { areProjectTimeSettingsEqual, + cloneProjectTimeSettings, formatTimeOfDayHours, - normalizeTimeOfDayHours + normalizeTimeOfDayHours, + type ProjectTimeSettings } from "../document/project-time-settings"; import { formatSceneDiagnosticSummary, @@ -353,6 +355,16 @@ interface PlayerStartMovementTemplateNumberDraft { crouchSpeedMultiplier: string; } +type ProjectTimePhaseKey = "dawn" | "dusk" | "night"; +type ProjectTimePhaseColorField = + | "skyTopColorHex" + | "skyBottomColorHex" + | "ambientColorHex" + | "lightColorHex"; +type ProjectTimePhaseNumericField = + | "ambientIntensityFactor" + | "lightIntensityFactor"; + type InteractionSourceEntity = Extract< EntityInstance, { kind: "triggerVolume" | "interactable" }