auto-git:

[change] src/app/App.tsx
This commit is contained in:
2026-04-12 14:10:41 +02:00
parent 2b42cc3f0d
commit 95c87a75dd

View File

@@ -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" }