display_mouse_set

Sets the position of the mouse on the display to the indicated values.

Syntax:

display_mouse_set(x, y);


Argument Description
x The x coordinate in the display.
y The y coordinate in the display.


Returns:N/A


Description

With this function you can change or set the position of the mouse within the game display which can be useful for FPS games, for example. The function will only work while the game is in focus and using alt + tab will unlock the mouse.


Example:

display_mouse_set(display_get_width() / 2, display_get_height() / 2);

The above code would center the mouse in the game display.


Back: Windows and Views
Next: screen_save
© Copyright YoYo Games Ltd. 2018 All Rights Reserved