Standalone MonoBehavior representation of a tracked hand joint within an IHand.
This a low-level type used primarily in core Interaction SDK operations such as detecting grabs and pinches. While various values in this type can be modified publicly, doing so is something only experts should consider trying.
This value is useful when mapping HandJoints to visualizations or other logic which must distinguish between the various tracked joints.
Vector3 LocalPositionOffset[Get]
Gets and sets the position offset associated with this HandJoint.
This is a low-level value which characterizes the expected shapes of certain tracked hand features (for example, phalanges, a.k.a. finger bones) according to the tracking system's hand model. These values can be set to fundamentally change the shape produced by hand tracking data, but this is something only experts should consider trying.
Quaternion RotationOffset[Get]
Gets and sets the rotation offset associated with this HandJoint.
This is a low-level value which characterizes the expected relative orientations of certain tracked hand features (for example, phalanges, a.k.a. finger bones) when compared to the tracking data of a given hand tracking system. These values can be set to fundamentally change the shape produced by hand tracking data, but this is something only experts should consider trying.
Convenience method for injecting all requirements to a dynamically instantiated HandJoint.
Because the only requirement of HandJoint is an IHand, this simply wraps InjectHand(IHand). This method exists to support Interaction SDK's dependency injection pattern and is not needed for typical Unity Editor-based usage.