Gestures — MRTK2

Gestures are input events based on human hands. There are two types of devices that raise gesture input events in MRTK:

Both of these input sources use the Gesture Settings profile to translate Unity's Touch and Gesture events respectively into MRTK's Input Actions. This profile can be found under the Input System Settings profile.

Gesture Profile

Gesture events

Gesture events are received by implementing one of the gesture handler interfaces: IMixedRealityGestureHandler or IMixedRealityGestureHandler<TYPE> (see table of event handlers).

See Example Scene for an example implementation of a gesture event handler.

When implementing the generic version, the OnGestureCompleted and OnGestureUpdated events can receive typed data of the following types:

  • Vector2 - 2D position gesture. Produced by touch screens to inform of their deltaPosition.
  • Vector3 - 3D position gesture. Produced by HoloLens to inform of:
  • Quaternion - 3D rotation gesture. Available to custom input sources but not currently produced by any of the existing ones.
  • MixedRealityPose - Combined 3D position/rotation gesture. Available to custom input sources but not currently produced by any of the existing ones.

Order of events

There are two principal chains of events, depending on user input:

  • "Hold":

    1. Hold tap:
      • start Manipulation
    2. Hold tap beyond HoldStartDuration:
      • start Hold
    3. Release tap:
      • complete Hold
      • complete Manipulation
  • "Move":

    1. Hold tap:
      • start Manipulation
    2. Hold tap beyond HoldStartDuration:
      • start Hold
    3. Move hand beyond NavigationStartThreshold:
      • cancel Hold
      • start Navigation
    4. Release tap:
      • complete Manipulation
      • complete Navigation

Example scene

The HandInteractionGestureEventsExample (Assets/MRTK/Examples/Demos/HandTracking/Scenes) scene shows how to use the pointer Result to spawn an object at the hit location.

The GestureTester (Assets/MRTK/Examples/Demos/HandTracking/Script) script is an example implementation to visualize gesture events via GameObjects. The handler functions change the color of indicator objects and display the last recorded event in text objects in the scene.