Up to date
This page is up to date for Godot 4.0
.
If you still find outdated information, please open an issue.
The XR action map¶
Godot has an action map feature as part of the XR system. At this point in time this system is part of the OpenXR module. There are plans to encompass WebXR into this in the near future hence we call it the XR action map system in this document. It implements the built-in action map system of OpenXR mostly exactly as it is offered.
The XR action map system exposes input, positional data and output for XR controllers to your game/application. It does this by exposing named actions that can be tailored to your game/application and binding these to the actual inputs and outputs on your XR devices.
As the XR action map is currently part of the OpenXR module, OpenXR needs to be enabled in your project settings to expose it:

You will then find the XR Action Map interface in the bottom of the screen:

Note
Godot's built-in input system has many things in common with the XR action map system. In fact our original idea was to add functionality to the existing input system and expose the data to the OpenXR action map system. We may revisit that idea at some point but as it turns out there were just too many problems to overcome. To name a few:
Godot's input system mainly centers around button inputs, XR adds triggers, axis, poses and haptics (output) into the mix. This would greatly complicate the input system with features that won't work for normal controllers or contrast with the current approach. It was felt this would lead to confusion for the majority of Godot users.
Godot's input system works with raw input data that is parsed and triggers emitting actions. This input data is made available to the end user. OpenXR completely hides raw data and does all the parsing for us, we only get access to already parsed action data. This inconsistency is likely to lead to bugs when an unsuspecting user tries to use an XR device as a normal input device.
Godot's input system allows changes to what inputs are bound to actions in runtime, OpenXR does not.
Godot's input system is based on device ids which are meaningless in OpenXR.
This does mean that a game/application that mixes traditional inputs with XR controllers will have a separation. For most applications either one or the other is used and this is not seen as a problem. In the end, it's a limitation of the system.
The default action map¶
Godot will automatically create a default action map if no action map file is found.
Warning
This default map was designed to help developers port their XR games/applications from Godot 3 to Godot 4. As a result this map essentially binds all known inputs on all controllers supported by default, to actions one on one. This is not a good example of setting up an action map. It does allow a new developer to have a starting point when they want to become familiar with Godot XR. It prevents having to design a proper action map for their game/application first.
For this walkthrough we're going to start with a blank action map. You can simply delete the "Godot action set" entry at the top by pressing the trash can icon. This will clear out all actions. You might also want to remove the controllers that you do not wish to setup, more on this later.
Action sets¶
Note
Before we dive in, you will see the term XR runtime used throughout this document. With XR runtime we mean the software that is controlling and interacting with the AR or VR headset. The XR runtime then exposes this to us through an API such as OpenXR. So:
for Steam this is SteamVR,
for Meta on desktop this is the Oculus Client (including when using Quest link),
for Meta on Quest this is the Quest's native OpenXR client,
on Linux this could be Monado, etc.
The action map allows us to organize our actions in sets. Each set can be enabled or disabled on its own.
The concept here is that you could have different sets that provide bindings in different scenarios. You could have:
a
Character control
set for when you're walking around,a
Vehicle control
set for when you're operating a vehicle,a
Menu
set for when a menu is open.
Only the action set applicable to the current state of your game/application can then be enabled.
This is especially important if you wish to bind the same input on a