From fc2c8b8b2409d830364e396b32cb01f0f77dc762 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 22:39:36 +0200 Subject: [PATCH] Add support for system actions in player input bindings --- src/app/App.tsx | 68 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 65 insertions(+), 3 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 1704d666..08b13446 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -6306,7 +6306,7 @@ export function App({ store, initialStatusMessage }: AppProps) { }; const handlePlayerStartGamepadActionBindingChange = ( - action: PlayerStartLocomotionAction, + action: PlayerStartLocomotionAction | PlayerStartSystemAction, nextBinding: PlayerStartGamepadActionBinding ) => { const nextBindings = createPlayerStartInputBindings({ @@ -15935,6 +15935,67 @@ export function App({ store, initialStatusMessage }: AppProps) { ))} + {PLAYER_START_SYSTEM_ACTIONS.map((action) => ( +
+ + +
+ ))} +