-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_get_cursor
drewmccluskey edited this page Feb 12, 2019
·
1 revision
returns the current state of the mouse cursor
window_get_cursor()
Returns: int
This function returns the state of the mouse cursor as an integer. It is useful for checking if the cursor is visible or not.
int cursor_visible = window_get_cursor();
The above code will set in cursor_visible to the current state of the window cursor.
Back to window-functions