onMouseMove
(Redirected from Client/Events/OnMouseMove)
Jump to navigation
Jump to search
Event
Client Only
Online and Offline
Not Cancellable
Available since Client 1.0.0
onMouseMove(Event event, int mouse, bool absolute, Vec2 coordinates)
The onMouseMove event is invoked when the mouse is moved.
Parameters
1) | Event | event | The event object for this event. |
2) | int | mouse | The ID of the mouse. |
3) | bool | absolute | Whether the coordinates are absolute. |
4) | Vec2 | coordinates | The coordinates, either absolute or relative. |
Attributes
const | This event cannot be cancelled. |
Notes
- This does NOT give an absolute position. The coordinates are delta coordinates, relative to mouse movement. If you need absolute cursor coordinates, use onCursorMove instead.
Examples
There aren't any examples for this event.
Compatibility
There isn't any compatibility information for this event.
Related
Client Related
OnMouseConnected
OnMouseDisconnected
OnMouseDown
OnMouseLeave
OnMouseMove
OnMouseUp
OnMouseWheel