Is Device Tracked
This Blueprint determines whether the sensors are tracking a device (such as a controller).
This Blueprint determines whether or not the sensors are tracking a device (such as a controller). You pass an argument, such as the Left-Hand controller, and this Blueprint returns a True
boolean if the sensors are tracking that device and False
otherwise. For example, if you use the Right-Hand controller but not the left, then calling this Blueprint with the Right-Hand argument will return True
, but calling it with the Left-Hand argument will return False
.

- No Devices: Specifies that the system should not check any devices to see if the sensors are currently tracking them.
- HMD: Checks to see if the sensors are tracking the head position.
- Left Hand: Check to see if the sensors are tracking the controller position associated with the left hand.
- Right Hand: Checks to see if the sensors are tracking the controller position associated with the right hand.
- All Hands: Checks to see if the position of any controller is being tracked by the sensors, regardless of whether that controller is associated with the left hand or right hand. For example, if the system only tracks one controller, this Blueprint will return
True
. If it is tracking both controllers, this Blueprint will return True
. - Device Object Zero: Checks to see if the sensors are tracking a camera. The mixed reality feature uses an external camera. In this scenario, the user attaches a Touch Controller to the camera, and the sensors then track the camera by tracking the Touch Controller.
- All Devices: Check to see if the sensors are tracking all available devices.
- Return Value: A boolean that is
True
if the specified device is being tracked by the sensors, and is False
otherwise.