Difference between revisions of "love.mouse.getPosition"
(Add an example, see also links) |
|||
Line 10: | Line 10: | ||
{{param|number|x|The position of the mouse along the x-axis.}} | {{param|number|x|The position of the mouse along the x-axis.}} | ||
{{param|number|y|The position of the mouse along the y-axis.}} | {{param|number|y|The position of the mouse along the y-axis.}} | ||
+ | == Examples == | ||
+ | === Use getPosition to help draw a custom mouse image === | ||
+ | <source lang="lua"> | ||
+ | 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 | ||
+ | </source> | ||
== See Also == | == See Also == | ||
* [[parent::love.mouse]] | * [[parent::love.mouse]] | ||
+ | * [[love.mouse.getX]] | ||
+ | * [[love.mouse.getY]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Returns the current position of the mouse.}} | {{#set:Description=Returns the current position of the mouse.}} |
Revision as of 20:02, 31 July 2011
Returns the current position of the mouse.
Contents
Function
Synopsis
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
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
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