Up to date
This page is up to date for Godot 4.2
.
If you still find outdated information, please open an issue.
XRInterface¶
Inherits: RefCounted < Object
Inherited By: MobileVRInterface, OpenXRInterface, WebXRInterface, XRInterfaceExtension
Base class for an XR interface implementation.
Description¶
This class needs to be implemented to make an AR or VR platform available to Godot and these should be implemented as C++ modules or GDExtension modules. Part of the interface is exposed to GDScript so you can detect, enable and configure an AR or VR platform.
Interfaces should be written in such a way that simply enabling them will give us a working setup. You can query the available interfaces through XRServer.
Tutorials¶
Properties¶
|
||
|
||
|
||
|
Methods¶
get_capabilities ( ) const |
|
get_name ( ) const |
|
get_play_area ( ) const |
|
get_projection_for_view ( int view, float aspect, float near, float far ) |
|
get_system_info ( ) |
|
get_tracking_status ( ) const |
|
get_transform_for_view ( int view, Transform3D cam_transform ) |
|
get_view_count ( ) |
|
initialize ( ) |
|
is_initialized ( ) const |
|
set_play_area_mode ( PlayAreaMode mode ) |
|
void |
stop_passthrough ( ) |
supports_play_area_mode ( PlayAreaMode mode ) |
|
void |
trigger_haptic_pulse ( String action_name, StringName tracker_name, float frequency, float amplitude, float duration_sec, float delay_sec ) |
void |
uninitialize ( ) |
Signals¶
play_area_changed ( int mode )
Emitted when the play area is changed. This can be a result of the player resetting the boundary or entering a new play area, the player changing the play area mode, the world scale changing or the player resetting their headset orientation.
Enumerations¶
enum Capabilities:
Capabilities XR_NONE = 0
No XR capabilities.
Capabilities XR_MONO = 1
This interface can work with normal rendering output (non-HMD based AR).
Capabilities XR_STEREO = 2
This interface supports stereoscopic rendering.
Capabilities XR_QUAD = 4
This interface supports quad rendering (not yet supported by Godot).
Capabilities XR_VR = 8
This interface supports VR.
Capabilities XR_AR = 16
This interface supports AR (video background and real world tracking).
Capabilities XR_EXTERNAL = 32
This interface outputs to an external device. If the main viewport is used, the on screen output is an unmodified buffer of either the left or right eye (stretched if the viewport size is not changed to the same aspect ratio of get_render_target_size). Using a separate viewport node frees up the main viewport for other purposes.
enum TrackingStatus:
TrackingStatus XR_NORMAL_TRACKING = 0
Tracking is behaving as expected.
TrackingStatus XR_EXCESSIVE_MOTION = 1
Tracking is hindered by excessive motion (the player is moving faster than tracking can keep up).
TrackingStatus XR_INSUFFICIENT_FEATURES = 2
Tracking is hindered by insufficient features, it's too dark (for camera-based tracking), player is blocked, etc.
TrackingStatus XR_UNKNOWN_TRACKING = 3
We don't know the status of the tracking or this interface does not provide feedback.
TrackingStatus XR_NOT_TRACKING = 4
Tracking is not functional (camera not plugged in or obscured, lighthouses turned off, etc.).
enum PlayAreaMode:
PlayAreaMode XR_PLAY_AREA_UNKNOWN = 0
Play area mode not set or not available.
PlayAreaMode XR_PLAY_AREA_3DOF = 1
Play area only supports orientation tracking, no positional tracking, area will center around player.
PlayAreaMode XR_PLAY_AREA_SITTING = 2
Player is in seated position, limited positional tracking, fixed guardian around player.
PlayAreaMode XR_PLAY_AREA_ROOMSCALE = 3
Player is free to move around, full positional tracking.
PlayAreaMode XR_PLAY_AREA_STAGE = 4
Same as XR_PLAY_AREA_ROOMSCALE but origin point is fixed to the center of the physical space, XRServer.center_on_hmd disabled.
enum EnvironmentBlendMode:
EnvironmentBlendMode XR_ENV_BLEND_MODE_OPAQUE = 0
Opaque blend mode. This is typically used for VR devices.
EnvironmentBlendMode XR_ENV_BLEND_MODE_ADDITIVE = 1
Additive blend mode. This is typically used for AR devices or VR devices with passthrough.
EnvironmentBlendMode XR_ENV_BLEND_MODE_ALPHA_BLEND = 2
Alpha blend mode. This is typically used for AR or VR devices with passthrough capabilities. The alpha channel controls how much of the passthrough is visible. Alpha of 0.0 means the passthrough is visible and this pixel works in ADDITIVE mode. Alpha of 1.0 means that the passthrough is not visible and this pixel works in OPAQUE mode.
Property Descriptions¶
bool ar_is_anchor_detection_enabled = false
On an AR interface, true
if anchor detection is enabled.
EnvironmentBlendMode environment_blend_mode = 0
bool set_environment_blend_mode ( EnvironmentBlendMode mode )
EnvironmentBlendMode get_environment_blend_mode ( )
Specify how XR should blend in the environment. This is specific to certain AR and passthrough devices where camera images are blended in by the XR compositor.
bool interface_is_primary = false
true
if this is the primary interface.
PlayAreaMode xr_play_area_mode = 0
bool set_play_area_mode ( PlayAreaMode mode )
PlayAreaMode get_play_area_mode ( )
The play area mode for this interface.
Method Descriptions¶
int get_camera_feed_id ( )
If this is an AR interface that requires displaying a camera feed as the background, this method returns the feed ID in the