Difference between revisions of "love.mouse.isGrabbed"
(Add an example, see also) |
|||
Line 9: | Line 9: | ||
=== Returns === | === Returns === | ||
{{param|boolean|grabbed|True if the cursor is grabbed, false if it is not.}} | {{param|boolean|grabbed|True if the cursor is grabbed, false if it is not.}} | ||
+ | == Examples == | ||
+ | Toggles whether the mouse is grabbed by pressing tab, using [[love.mouse.setGrab]]. | ||
+ | <source lang="lua"> | ||
+ | function love.keypressed(key) | ||
+ | if key == "tab" then | ||
+ | local state = not love.mouse.isGrabbed() -- the opposite of whatever it currently is | ||
+ | love.mouse.setGrab(state) | ||
+ | end | ||
+ | end | ||
+ | </source> | ||
== See Also == | == See Also == | ||
* [[parent::love.mouse]] | * [[parent::love.mouse]] | ||
+ | * [[love.mouse.setGrab]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Checks if the mouse is grabbed.}} | {{#set:Description=Checks if the mouse is grabbed.}} |
Revision as of 16:09, 27 September 2011
Checks if the mouse is grabbed.
Function
Synopsis
grabbed = love.mouse.isGrabbed( )
Arguments
None.
Returns
boolean grabbed
- True if the cursor is grabbed, false if it is not.
Examples
Toggles whether the mouse is grabbed by pressing tab, using love.mouse.setGrab.
function love.keypressed(key)
if key == "tab" then
local state = not love.mouse.isGrabbed() -- the opposite of whatever it currently is
love.mouse.setGrab(state)
end
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