MouseCapture Type
Mouse capture mode for first-person / pointer-lock style input.
Union cases
| Union case |
Description
|
Full Usage:
Captured
|
The cursor is hidden and confined; mouse movement produces deltas that allow unlimited rotation (e.g. first-person camera look). The backend implements this via its native mechanism (raylib's DisableCursor, MonoGame's re-center-after-poll). |
Full Usage:
Free
|
Normal cursor behavior — the OS cursor moves freely within the window. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsCaptured
Returns: bool
|
|
Full Usage:
this.IsFree
Returns: bool
|
|
Mibo