From 2e62f495e400c8b03a8742f675a1f6e8c5aab11f Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 18:01:06 +0200 Subject: [PATCH] Add helper functions for player start movement template labels and descriptions in App.tsx --- src/app/App.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 1701aeec..1d7087c2 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -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 {