diff --git a/src/app/App.tsx b/src/app/App.tsx index 2af1ed58..6a124197 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -13255,6 +13255,18 @@ export function App({ store, initialStatusMessage }: AppProps) { : undefined; if (editorState.toolMode === "play" && runtimeScene !== null) { + const runtimeInteractKeyboardBinding = + runtimeScene.playerInputBindings.keyboard.interact; + const runtimeInteractKeyboardInstruction = isPlayerStartMouseBindingCode( + runtimeInteractKeyboardBinding + ) + ? `Click ${formatPlayerStartKeyboardBindingLabel(runtimeInteractKeyboardBinding)}` + : `Press ${formatPlayerStartKeyboardBindingLabel(runtimeInteractKeyboardBinding)}`; + const runtimeInteractGamepadInstruction = `press ${formatPlayerStartGamepadActionBindingLabel( + runtimeScene.playerInputBindings.gamepad.interact + )}`; + const runtimeInteractInstruction = `${runtimeInteractKeyboardInstruction} or ${runtimeInteractGamepadInstruction}`; + return (