Enum NavigationDeviceType
The type of device that generated a navigation event.
Namespace: UnityEngine.EventSystems
Assembly: UnityEngine.UI.dll
Syntax
public enum NavigationDeviceType
Remarks
This can help avoid duplicated treatment of events when some controls react to keyboard input and navigation events at the same time.
Fields
Name | Description |
---|---|
Keyboard | Indicates that this device is known to be a keyboard. |
NonKeyboard | Indicates that this device is anything else than a keyboard (it could be a Gamepad, for example). |
Unknown | Indicates that no specific information is known about this device. |