window_mouse_set

Sets the position of the mouse in the window to the indicated values.

Syntax:

window_mouse_set(x, y);


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


Returns:N/A


Description

With this function you can change or set the position of the mouse within the game window 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.

NOTE: For regular mouse functions see the section on Mouse Input.


Example:

window_mouse_set(window_get_width() / 2, window_get_height() / 2);

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


Back: The Game Window
Next: window_center
© Copyright YoYo Games Ltd. 2018 All Rights Reserved