Pixel-Composer/scripts/mouse_input/mouse_input.gml
Tanasart b65a2f685c Fix
2023-12-05 15:51:24 +07:00

28 lines
553 B
Plaintext

function mouse_click(mouse, focus = true) {
INLINE
return focus && mouse_check_button(mouse);
}
function mouse_press(mouse, focus = true) {
INLINE
return focus && mouse_check_button_pressed(mouse);
}
function mouse_release(mouse, focus = true) {
INLINE
return focus && mouse_check_button_released(mouse);
}
#region mouse global
globalvar MOUSE_WRAP, MOUSE_WRAPPING;
MOUSE_WRAP = false;
MOUSE_WRAPPING = false;
#macro SCROLL_SPEED PREFERENCES.mouse_wheel_speed
function setMouseWrap() {
INLINE
MOUSE_WRAP = true;
}
#endregion