Skip to content

Commit 79c7896

Browse files
More feedback addressed
1 parent 6ded039 commit 79c7896

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

Documentation/Input/Gestures.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,9 @@ Both of these input sources use the _Gesture Settings_ profile to translate Unit
1919

2020
Gesture events are received by implementing one of the gesture handler interfaces: [`IMixedRealityGestureHandler`](xref:Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler) and [`IMixedRealityGestureHandler<TYPE>`](xref:Microsoft.MixedReality.Toolkit.Input.IMixedRealityGestureHandler`1) (see table of [event handlers](InputEvents.md)).
2121
When implementing the generic version, the *OnGestureCompleted* and *OnGestureUpdated* events can receive typed data of the following types:
22-
- ```Vector2```
23-
2D position gesture. Currently supported sources:
24-
- [```deltaPosition```](https://docs.unity3d.com/ScriptReference/Touch-deltaPosition.html) on a touch screen
25-
- ```Vector3```
26-
3D position gesture. Currently supported sources:
27-
- [```cumulativeDelta```](https://docs.unity3d.com/ScriptReference/XR.WSA.Input.ManipulationUpdatedEventArgs-cumulativeDelta.html) of a Hololens manipulation event
28-
- [```normalizedOffset```](https://docs.unity3d.com/ScriptReference/XR.WSA.Input.NavigationUpdatedEventArgs-normalizedOffset.html) of a Hololens navigation event
29-
- ```Quaternion```
30-
3D rotation gesture. No currently supported sources.
31-
- ```MixedRealityPose```
32-
Combined 3D position/rotation gesture. No currently supported sources.
22+
- `Vector2` - 2D position gesture. Produced by touch screens to inform of their [`deltaPosition`](https://docs.unity3d.com/ScriptReference/Touch-deltaPosition.html).
23+
- `Vector3` - 3D position gesture. Produced by HoloLens to inform of:
24+
- [`cumulativeDelta`](https://docs.unity3d.com/ScriptReference/XR.WSA.Input.ManipulationUpdatedEventArgs-cumulativeDelta.html) of a manipulation event
25+
- [`normalizedOffset`](https://docs.unity3d.com/ScriptReference/XR.WSA.Input.NavigationUpdatedEventArgs-normalizedOffset.html) of a navigation event
26+
- `Quaternion` - 3D rotation gesture. Available to custom input sources but not currently produced by any of the existing ones.
27+
- `MixedRealityPose` - Combined 3D position/rotation gesture. Available to custom input sources but not currently produced by any of the existing ones.

0 commit comments

Comments
 (0)