{{newin|[[0.10.0]]|100|type=function}}
Checks whether the specified [[Scancode]]s are pressed. Not to be confused with [[love.keypressed]] or [[love.keyreleased]].

Unlike regular [[KeyConstant]]s, Scancodes are keyboard layout-independent. The scancode "w" is used if the key in the same place as the "w" key on an [https://en.wikipedia.org/wiki/British_and_American_keyboards#/media/File:KB_United_States-NoAltGr.svg American keyboard] is pressed, no matter what the key is labelled or what the user's operating system settings are.

== Function ==
=== Synopsis ===
<source lang="lua">
down = love.keyboard.isScancodeDown( scancode, ... )
</source>
=== Arguments ===
{{param|Scancode|scancode|A Scancode to check.}}
{{param|Scancode|...|Additional Scancodes to check.}}
=== Returns ===
{{param|boolean|down|True if any supplied Scancode is down, false if not.}}

== See Also ==
* [[parent::love.keyboard]]
* [[love.keyboard.isDown]]
* [[love.keyboard.getKeyFromScancode]]
* [[love.keyboard.getScancodeFromKey]]
* [[love.keypressed]] 
* [[love.keyreleased]] 
[[Category:Functions]]
{{#set:Description=Checks whether the specified [[Scancode]]s are pressed.}}
== Other Languages ==
{{i18n|love.keyboard.isScancodeDown}}