Add helper functions for player start movement template labels and descriptions in App.tsx

This commit is contained in:
2026-04-11 18:01:06 +02:00
parent 7bd9d28b40
commit 2e62f495e4

View File

@@ -349,6 +349,24 @@ function getPlayerStartColliderModeDescription(
}
}
function getPlayerStartMovementTemplateLabel(
kind: PlayerStartMovementTemplate["kind"]
): string {
switch (kind) {
case "default":
return "Default";
}
}
function getPlayerStartMovementTemplateDescription(
kind: PlayerStartMovementTemplate["kind"]
): string {
switch (kind) {
case "default":
return "Shared movement basis for First Person and Third Person. Keeps the authored path typed and prepares explicit jump, sprint, and crouch capabilities for later slices.";
}
}
function getPlayerStartMovementActionLabel(
action: PlayerStartMovementAction
): string {