window_mouse_set(x, y);
Argument | Description |
---|---|
x | The x coordinate in the window. |
y | The y coordinate in the window. |
Returns:N/A
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.
window_mouse_set(window_get_width() / 2, window_get_height() / 2);
The above code would center the mouse in the game window.