robot_2Generated
code_blocksInput

Description

The Hand field is a member of the Sandbox.VR.MotionRange enumeration. It represents the default motion range for virtual reality hand tracking. This range provides hand poses that either estimate or fully represent the user's hand, allowing for a more natural and immersive VR experience.

Usage

Use the Hand field when you want to enable hand tracking that closely mimics the user's actual hand movements. This is particularly useful in applications where precise hand gestures are important, such as in VR simulations or games that require detailed hand interactions.

Example

// Example of using Sandbox.VR.MotionRange.Hand

// Assuming you have a VR setup and want to set the motion range to Hand
VRSettings.MotionRange = MotionRange.Hand;

// This will configure the VR system to use hand tracking that estimates or fully represents the user's hand.