love.mouse.getPosition

love.mouse.getPosition

Returns the current position of the mouse.

Function

Synopsis

1
x, y = love.mouse.getPosition( )

Arguments

None.

Returns

number x
The position of the mouse along the x-axis.
number y
The position of the mouse along the y-axis.

Examples

Use getPosition to help draw a custom mouse image

1
2
3
4
5
6
7
8
function love.load()
   love.mouse.setVisible(false) -- make default mouse invisible
   img = love.graphics.newImage("mouse.png") -- load in a custom mouse image
end
function love.draw()
   local x, y = love.mouse.getPosition() -- get the position of the mouse
   love.graphics.draw(img, x, y) -- draw the custom mouse image
end

See Also


doc_love
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.