Sets the current position of the mouse.
love.mouse.setPosition( x, y )
number x
number y
Nothing.
Snap the mouse to the horizontal center of the screen while maintaining the coordinate along the y-axis by using love.mouse.getY.
function love.keypressed( ) love.mouse.setPosition( love.graphics.getWidth() * 0.5, love.mouse.getY() ) end
© 2006–2016 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/love.mouse.setPosition