Enum InputProxy.MouseFlag
A set of flags to describe various aspects of InputProxy.MouseInput, mainly used to define additional information related to Data.
Namespace: GDX.Developer
Syntax
[Flags]
public enum MouseFlag : uint
Fields
| Name | Description |
|---|---|
| Absolute | Indicates provided X/Y are in absolute screenspace instead of deltas of previous position. |
| HorizontalWheel | |
| LeftDown | |
| LeftUp | |
| MiddleDown | |
| MiddleUp | |
| Move | |
| RightDown | |
| RightUp | |
| VerticalWheel | |
| VirtualDesk | Used in multi-desktop scenarios where you want to treat X/Y against the combined screen space. You must also use Absolute. |