WVR Hand¶
The hand APIs provide the way to get the hand tracking data from the hand device service.
To use hand feature, require wave.feature.handtracking
“true” in AndroidManifest.xml.
<uses-feature
android:name="wave.feature.handtracking"
android:required="true" />
To use hand and controller simultaneously, require wave.feature.simultaneous_interaction
“true” in AndroidManifest.xml.
<uses-feature
android:name="wave.feature.simultaneous_interaction"
android:required="true" />
#include <wvr/wvr_hand.h>
- WVR_StartHandGesture
- WVR_GetHandGestureData
- WVR_StopHandGesture
- WVR_GetHandGestureInfo
- WVR_StartHandTracking
- WVR_GetHandTrackingData
- WVR_StopHandTracking
- WVR_GetHandTrackerInfo
- WVR_GetHandJointCount
- WVR_EnhanceHandStable
- WVR_IsEnhanceHandStable
Note
Recommend calling get hand pose API WVR_GetHandTrackingData just after WVR_GetSyncPose to make sure hand model moving smooth.