Please Select Your Location
Australia
Österreich
België
Canada
Canada - Français
中国
Česká republika
Denmark
Deutschland
France
HongKong
Iceland
Ireland
Italia
日本
Korea
Latvija
Lietuva
Lëtzebuerg
Malta
المملكة العربية السعودية (Arabic)
Nederland
New Zealand
Norge
Polska
Portugal
Russia
Saudi Arabia
Southeast Asia
España
Suisse
Suomi
Sverige
台灣
Ukraine
United Kingdom
United States
Please Select Your Location
België
Česká republika
Denmark
Iceland
Ireland
Italia
Latvija
Lietuva
Lëtzebuerg
Malta
Nederland
Norge
Polska
Portugal
España
Suisse
Suomi
Sverige

Getting Data from the VIVE Wrist Tracker

Hi there, in this section, I’m going to show you how to use the VIVE XR Wrist Tracker profile. This profile allows your apps to receive useful data provided by the VIVE Wrist Tracker. As shown in the following, VIVE Wrist Tracker provides the pose of the tracker and input of the menu and primary buttons.

Wrist001.png
Wrist002.png
Wrist003.png

This profile can be used in different cases.

In the following, let’s see how to use this VIVE XR Wrist Tracker profile.

Step 1. Add the VIVE XR Wrist Tracker Profile
To use the Wrist Tracker profile, simply add the VIVE XR Wrist Tracker profile in Edit > Project Setting > XR Plug-In Management > OpenXR.

XRPluginManagementWrist.png

Step 2. Use the feature through an action map
In any action map, you can use the VIVE XR Wrist Tracker profile data as follows.

  1. primaryButton: indicates the press state of primary button.
    Path: <ViveWristTracker>{RightHand}/primaryButton (or LeftHand)

    WristTrackerPrimaryButton.png

  2. Menu: indicates the press state of left wrist tracker menu button.
    Path: <ViveWristTracker>{LeftHand}/menu (only LeftHand has menu)

    WristTrackerMenu.png

  3. devicesPose: indicates the pose of the tracker.
    Path: <ViveWristTracker>{RightHand}/devicePose (or LeftHand)

    WristTrackerDevicePose.png

  4. devicesPose/isTracked: indicates whether the tracker is tracked or not.
    Path: <ViveWristTracker>{RightHand}/devicePose/isTracked (or LeftHand)

    WristTrackerIsTracked.png

  5. devicePose/trackingState: indicates the InputTrackingState of wrist tracker.
    Path: <ViveWristTracker>{RightHand}/devicePose/trackingState (or LeftHand)

    WristTrackerTrackingState.png

If you aren’t familiar with how to use action maps, go check to the basic input.