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>

Note

Recommend calling get hand pose API WVR_GetHandTrackingData just after WVR_GetSyncPose to make sure hand model moving smooth.