Enum OpenXRInterface.HandJointFlags
- Namespace
- Godot
- Assembly
- GodotSharp.dll
[Flags]
public enum OpenXRInterface.HandJointFlags : long
Fields
AngularVelocityValid = 32
If set, our angular velocity data is valid, otherwise, the angular velocity data is unreliable and should not be used.
LinearVelocityValid = 16
If set, our linear velocity data is valid, otherwise, the linear velocity data is unreliable and should not be used.
None = 0
No flags are set.
OrientationTracked = 2
If set, the orientation data comes from tracking data, otherwise, the orientation data contains predicted data.
OrientationValid = 1
If set, the orientation data is valid, otherwise, the orientation data is unreliable and should not be used.
PositionTracked = 8
If set, the positional data comes from tracking data, otherwise, the positional data contains predicted data.
PositionValid = 4
If set, the positional data is valid, otherwise, the positional data is unreliable and should not be used.