love.mouse.getX
Returns the current x-position of the mouse.
Function
Synopsis
x = love.mouse.getX( )
Arguments
None.
Returns
number x
- The position of the mouse along the x-axis.
Examples
Draw a vertical line at the mouse's x-position.
function love.draw()
local x = love.mouse.getX()
love.graphics.line(x,0, x,love.graphics.getHeight())
end
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info