WindowsGestureSettings Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copy of Unity's GestureSettings
This enumeration supports a bitwise combination of its member values.
public enum class WindowsGestureSettings
[System.Flags]
public enum WindowsGestureSettings
[<System.Flags>]
type WindowsGestureSettings =
Public Enum WindowsGestureSettings
- Inheritance
-
WindowsGestureSettings
- Attributes
Fields
Name | Value | Description |
---|---|---|
Tap | 1 | Enable support for the tap gesture. |
DoubleTap | 2 | Enable support for the double-tap gesture. |
Hold | 4 | Enable support for the hold gesture. |
ManipulationTranslate | 8 | Enable support for the manipulation gesture which tracks changes to the hand's position. This gesture is relative to the start position of the gesture and measures an absolute movement through the world. |
NavigationX | 16 | Enable support for the navigation gesture, in the horizontal axis. |
NavigationY | 32 | Enable support for the navigation gesture, in the vertical axis. |
NavigationZ | 64 | Enable support for the navigation gesture, in the depth axis. |
NavigationRailsX | 128 | Enable support for the navigation gesture, in the horizontal axis using rails (guides). |
NavigationRailsY | 256 | Enable support for the navigation gesture, in the vertical axis using rails (guides). |
NavigationRailsZ | 512 | Enable support for the navigation gesture, in the depth axis using rails (guides). |