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

VIVE Wrist Trackers Unreal Engine Getting Started

What will you learn?

You will learn to use the VIVE Wrist Tracker with Vive Focus 3 all in one headset. This article will cover all the required steps to get you started with the VIVE Wrist Tracker using Unreal Engine and the VIVE Wave SDK.

Note : In this tutorial we will use Unreal Engine 4.26, Vive Focus 3 and a pair of Wrist Trackers .

This tutorial assumes you are familiar with the VIVE Wave SDK .

What is the VIVE Wrist Tracker?

VIVE Wave™ Unreal plugin provides the Wrist Tracker feature. A Wrist Tacker component is a device where its location and orientation can be tracked.

Wear your VIVE Wrist Trackers

  1. The VIVE Wrist Tracker fits like a watch around a user’s arm. Refer to the image below to wear correctly.
1.png



Setup your VIVE Wrist Trackers

Connect your VIVE Wrist Trackers

  1. Navigate to the Connectivity tab under Settings .
2.png

  1. Navigate to the Controller tab under the Connectivity tab
3.png

  1. Click on the Controller / Tracker icon to switch from Controller mode to Wrist Tracker mode and vice versa.
4.png

  1. Press on continue to Unpair your controllers.
5.png

  1. Once in passthrough mode you will see the below Pair wrist trackers window.
5.1 Single press the tracker Power button (highlighted in blue)

5.2 Once your tracker is
ON , long press the Power button until the tracker enters pairing mode ( ~2 sec ) and LEDs start blinking.
6.png 7.png 8.png

  1. Repeat Step 5 for the other tracker. Once the trackers are paired you will be able to see the wrist tracker 3D model on your wrist.
9.png

  1. If you are using the wrist trackers with hand tracking you will need to click on the calibrate button else click on I’m not using it for hand tracking and skip step 8 .

Note: You will need to use the Pinch gesture to select either of the two buttons.

10.png

  1. Calibrate wrist trackers to use with hand tracking. (This step will only show if you chose to use the wrist tracker with hand tracking and clicked on calibrate the step 7 )

11.png

  1. Once you completed all the previous step you should see that a notification indicating Calibration success

12.png

Project Settings

Make sure the following WaveVR options have been set in your project settings to enable both Tracker and hand tracking.

13.png

How to set up VRPawn

  1. Create a Blueprint Class of type Pawn and call it VRPawn_WristTracker
14.png

  1. Add WaveVR Hand component to show the tracked hands (You will need to add for both Right and Left hands)
15.png

  1. Setup you WaveVR hand component (Left hand example below do the same for the right hand)

3.1 - Set the skeletal mesh. (Use WVRRightHand_1106_ASCII for right hand)

16.png

3.2 - Set Hand Tracker Type as Natual

3.3 - Enable IsLeft only for left hand ( Disable for right hand)

17.png

  1. Add the following code to your VR_Pawn_WristTracker BeginPlay function :
18.png

4.1 - Set your Head Mounted Display tracking origin.
4.2 - Offset the VRCameraRoot to match your desired height.
4.3 - Start Hand Tracking to enable hand tracking
4.4 - Start Tracke r to start wrist tracker component
4.5 - Fuse wrist position with Tracker - (Optional if you want to fuse the wrist position based tracker position)

Create Your Tracker Actor

  1. Create a new actor class and call it BP_Bracelet_0
19.png

  1. Add the following code to your BP_Bracelet_0 Blueprint and set your static mesh:
20.png

  1. Add the following code to your BP_Bracelet_0 Blueprint :
21.png

The above code is getting the current tracker position and rotation and setting the BP_Bracelet_0 Static Mesh Component position and rotation accordingly for visual representation.

  1. Repeat step 3 and call it BP_Bracelet_1 and use Tracker 1 instead of Tracker 0 for both Get Tracker Position and Get Tracker Rotation .
22.png

Create a Sample Map

  1. Create a new Level and place your VRPawn_WristTracker and add both BP_Bracelet_0 and BP_Bracelet_1 to the level.
23.png

  1. Build your project and make sure your tracker are On. In case they are Off single press the tracker Power button to turn it back on.
24.png