Difference between revisions of "love.keyboard.isScancodeDown"

(Created page)
 
m
Line 7: Line 7:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
down = love.keyboard.isScancodeDown( scancode1, scancode2, ... )
+
down = love.keyboard.isScancodeDown( scancode, ... )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|Scancode|scancodeN|A Scancode to check.}}
+
{{param|Scancode|scancode|A Scancode to check.}}
 +
{{param|Scancode|...|Additional Scancodes to check.}}
 
=== Returns ===
 
=== Returns ===
 
{{param|boolean|down|True if any supplied Scancode is down, false if not.}}
 
{{param|boolean|down|True if any supplied Scancode is down, false if not.}}

Revision as of 17:28, 17 December 2015

Available since LÖVE 0.10.0
This function is not supported in earlier versions.

Checks whether the specified Scancodes are pressed. Not to be confused with love.keypressed or love.keyreleased.

Unlike regular KeyConstants, Scancodes are keyboard layout-independent. The scancode "w" is used if the key in the same place as the "w" key on an American keyboard is pressed, no matter what the key is labelled or what the user's operating system settings are.

Function

Synopsis

down = love.keyboard.isScancodeDown( scancode, ... )

Arguments

Scancode scancode
A Scancode to check.
Scancode ...
Additional Scancodes to check.

Returns

boolean down
True if any supplied Scancode is down, false if not.

See Also

Other Languages