Server for AR and VR features. The AR/VR server is the heart of our Advanced and Virtual Reality solution and handles all the processing. https://docs.godotengine.org/en/latest/tutorials/vr/index.html Registers an [XRInterface] object. Registers a new [XRPositionalTracker] that tracks a spatial location in real space. This is an important function to understand correctly. AR and VR platforms all handle positioning slightly differently. For platforms that do not offer spatial tracking, our origin point (0,0,0) is the location of our HMD, but you have little control over the direction the player is facing in the real world. For platforms that do offer spatial tracking, our origin point depends very much on the system. For OpenVR, our origin point is usually the center of the tracking space, on the ground. For other platforms, it's often the location of the tracking camera. This method allows you to center your tracker on the location of the HMD. It will take the current location of the HMD and use that to adjust all your tracking data; in essence, realigning the real world to your player's current position in the game world. For this method to produce usable results, tracking information must be available. This often takes a few frames after starting your game. You should call this method after a few seconds have passed. For instance, when the user requests a realignment of the display holding a designated button on a controller for a short period of time, or when implementing a teleport mechanism. Finds an interface by its name. For instance, if your project uses capabilities of an AR/VR platform, you can find the interface for that platform by name and initialize it. Returns the primary interface's transformation. Returns the interface registered at a given index in our list of interfaces. Returns the number of interfaces currently registered with the AR/VR server. If your project supports multiple AR/VR platforms, you can look through the available interface, and either present the user with a selection or simply try to initialize each interface and use the first one that returns [code]true[/code]. Returns a list of available interfaces the ID and name of each interface. Returns the absolute timestamp (in μs) of the last [XRServer] commit of the AR/VR eyes to [RenderingServer]. The value comes from an internal call to [method Time.get_ticks_usec]. Returns the duration (in μs) of the last frame. This is computed as the difference between [method get_last_commit_usec] and [method get_last_process_usec] when committing. Returns the absolute timestamp (in μs) of the last [XRServer] process callback. The value comes from an internal call to [method Time.get_ticks_usec]. Returns the reference frame transform. Mostly used internally and exposed for GDExtension build interfaces. Returns the positional tracker with this name. Returns a dictionary of trackers for this type. Removes this interface. Removes this positional tracker. The primary [XRInterface] currently bound to the [XRServer]. Allows you to adjust the scale to your game's units. Most AR/VR platforms assume a scale of 1 game world unit = 1 real world meter. Emitted when a new interface has been added. Emitted when an interface is removed. Emitted when a new tracker has been added. If you don't use a fixed number of controllers or if you're using [XRAnchor3D]s for an AR solution, it is important to react to this signal to add the appropriate [XRController3D] or [XRAnchor3D] nodes related to this new tracker. Emitted when a tracker is removed. You should remove any [XRController3D] or [XRAnchor3D] points if applicable. This is not mandatory, the nodes simply become inactive and will be made active again when a new tracker becomes available (i.e. a new controller is switched on that takes the place of the previous one). Emitted when an existing tracker has been updated. This can happen if the user switches controllers. The tracker tracks the location of the players head. This is usually a location centered between the players eyes. Note that for handheld AR devices this can be the current location of the device. The tracker tracks the location of a controller. The tracker tracks the location of a base station. The tracker tracks the location and size of an AR anchor. Used internally to filter trackers of any known type. Used internally if we haven't set the tracker type yet. Used internally to select all trackers. Fully reset the orientation of the HMD. Regardless of what direction the user is looking to in the real world. The user will look dead ahead in the virtual world. Resets the orientation but keeps the tilt of the device. So if we're looking down, we keep looking down but heading will be reset. Does not reset the orientation of the HMD, only the position of the player gets centered.