new TrackingJoint()
Represents a joint on a user's skeleton. TrackingJoint should not be instantiated directly, instead it should be retrieved via TrackingSkeleton.getJoint.
Extends
Members
confidence :Number
A number from 0 to 3 indicating the confidence of the tracking
name :String
The name of the joint comprised of its side, body part, and index. E.g. 'LeftPinky0'.
Methods
Type Definitions
ThreeJSCursorEvent
The ThreeJSCursorEvent interface represents events that occur due to the user interacting with three.js objects using the cursor
Properties:
| Name | Type | Description |
|---|---|---|
ray |
THREE.Ray | The ray that was used to project the cursor. Will often come from either the user's center eye or a motion controller they are holding. |
point |
THREE.Vector3 | The point in world space where the ray intersected an object. |
bubbles |
Boolean | Whether this event will bubble up the three.js hierarchy. True for all ThreeJSCursorEvents. Roughly matches DOM bubbling (does not have a capture step). |
target |
THREE.Object3D | The THREE.Object3D the event originally fired on. |
currentTarget |
THREE.Object3D | The THREE.Object3D the event is currently firing on as it bubbles. |
stopPropagation |
function | Allows the remaining event listeners for this event on this THREE.Object3D to fire and then stops. |
stopImmediatePropagation |
function | Stops the firing of any more event listeners for this event. |
- Inherited From: