diff --git a/src/app/App.tsx b/src/app/App.tsx index 8210b2b7..d134042d 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -8879,12 +8879,17 @@ export function App({ store, initialStatusMessage }: AppProps) { overrides.colliderMode ?? playerStartColliderModeDraft; const inputBindings = overrides.inputBindings ?? playerStartInputBindingsDraft; + const interactionReachMeters = readPositiveNumberDraft( + playerStartInteractionReachDraft, + "Player Start interaction reach" + ); const nextEntity = createPlayerStartEntity({ id: selectedPlayerStart.id, name: selectedPlayerStart.name, position: snappedPosition, yawDegrees, navigationMode, + interactionReachMeters, movementTemplate, inputBindings, collider: { @@ -20612,6 +20617,45 @@ export function App({ store, initialStatusMessage }: AppProps) { +