Structs§
- Data of a Mouse event.
Enums§
- Describes a button of a mouse controller.
Functions§
- The
click
event fires when the user starts and ends a click in an element with the left button of the mouse. - The
globalclick
event fires when the user clicks anywhere. Note that this fires for all mouse buttons. You can check the specific variant with theMouseData
’strigger_button
property. - The
globalmousedown
event fires when the user starts clicking anywhere. Note that this fires for all mouse buttons. You can check the specific variant with theMouseData
’strigger_button
property. - The
globalmousemove
event fires when the user moves the mouse anywhere in the app. - The
click
event fires when the user clicks an element with the middle button of the mouse. - The
mousedown
event fires when the user starts clicking an element. Note that this fires for all mouse buttons. You can check the specific variant with theMouseData
’strigger_button
property. - The
mouseenter
event fires when the user starts hovering an element. - The
mouseleave
event fires when the user stops hovering an element. - The
mousemove
event fires when the user moves the mouse over an element. Unlikeonmouseenter
, this fires even if the user was already hovering over the element. For that reason, it’s less efficient. - The
mouseup
event fires when the user ends the click in an element with the left button of the mouse. - The
click
event fires when the user clicks an element with the right button of the mouse.