Sets the current position of the mouse. Non-integer values are floored.
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