Difference between revisions of "love.mousemoved"
m |
m |
||
Line 2: | Line 2: | ||
Callback function triggered when the mouse is moved. | Callback function triggered when the mouse is moved. | ||
== Function == | == Function == | ||
+ | {{newin|[[0.10.0]]|100|type=variant}} | ||
+ | === Synopsis === | ||
+ | <source lang="lua"> | ||
+ | love.mousemoved( x, y, dx, dy, istouch ) | ||
+ | </source> | ||
+ | === Arguments === | ||
+ | {{param|number|x|The mouse position on the x-axis.}} | ||
+ | {{param|number|y|The mouse position on the y-axis.}} | ||
+ | {{param|number|dx|The amount moved along the x-axis since the last time love.mousemoved was called.}} | ||
+ | {{param|number|dy|The amount moved along the y-axis since the last time love.mousemoved was called.}} | ||
+ | {{param|boolean|istouch|True if the mouse button press originated from a touchscreen touch-press.}} | ||
+ | === Returns === | ||
+ | Nothing. | ||
+ | == Function == | ||
+ | {{oldin|[[0.10.0]]|100|type=variant}} | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 14: | Line 29: | ||
Nothing. | Nothing. | ||
== Notes == | == Notes == | ||
− | If [[love.mouse.setRelativeMode|Relative Mode]] is enabled for the mouse, the '''dx''' and '''dy''' arguments of this callback will update but '''x''' and '''y''' | + | If [[love.mouse.setRelativeMode|Relative Mode]] is enabled for the mouse, the '''dx''' and '''dy''' arguments of this callback will update but '''x''' and '''y''' are not guaranteed to. |
== See Also == | == See Also == | ||
* [[parent::love]] | * [[parent::love]] |
Revision as of 14:40, 11 June 2016
Available since LÖVE 0.9.2 |
This function is not supported in earlier versions. |
Callback function triggered when the mouse is moved.
Contents
Function
Available since LÖVE 0.10.0 |
This variant is not supported in earlier versions. |
Synopsis
love.mousemoved( x, y, dx, dy, istouch )
Arguments
number x
- The mouse position on the x-axis.
number y
- The mouse position on the y-axis.
number dx
- The amount moved along the x-axis since the last time love.mousemoved was called.
number dy
- The amount moved along the y-axis since the last time love.mousemoved was called.
boolean istouch
- True if the mouse button press originated from a touchscreen touch-press.
Returns
Nothing.
Function
Removed in LÖVE 0.10.0 |
This variant is not supported in that and later versions. |
Synopsis
love.mousemoved( x, y, dx, dy )
Arguments
number x
- The mouse position on the x-axis.
number y
- The mouse position on the y-axis.
number dx
- The amount moved along the x-axis since the last time love.mousemoved was called.
number dy
- The amount moved along the y-axis since the last time love.mousemoved was called.
Returns
Nothing.
Notes
If Relative Mode is enabled for the mouse, the dx and dy arguments of this callback will update but x and y are not guaranteed to.
See Also
- love
- love.mousepressed
- love.mousereleased
- love.mouse.setPosition
- love.mouse.getPosition
- love.mouse.setRelativeMode
- love.mouse.getRelativeMode
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