This object contains all data related to a pose on a tracked object. XR runtimes often identify multiple locations on devices such as controllers that are spatially tracked. Orientation, location, linear velocity and angular velocity are all provided for each pose by the XR runtime. This object contains this state of a pose. Returns the [member transform] with world scale and our reference frame applied. This is the transform used to position [XRNode3D] objects. The angular velocity for this pose. If [code]true[/code] our tracking data is up to date. If [code]false[/code] we're no longer receiving new tracking data and our state is whatever that last valid state was. The linear velocity of this pose. The name of this pose. Pose names are often driven by an action map setup by the user. Godot does suggest a number of pose names that it expects [XRInterface]s to implement: - [code]root[/code] defines a root location, often used for tracked objects that do not have further nodes. - [code]aim[/code] defines the tip of a controller with the orientation pointing outwards, for instance: add your raycasts to this. - [code]grip[/code] defines the location where the user grips the controller - [code]skeleton[/code] defines the root location a hand mesh should be placed when using hand tracking and the animated skeleton supplied by the XR runtime. The transform containing the original and transform as reported by the XR runtime.