love.keyboard.isDown
Checks whether a certain key is down.
Contents
Function
Synopsis
down = love.keyboard.isDown( key )
Arguments
KeyConstant key
- The key to check.
Returns
boolean down
- True if the key is down, false if not.
Examples
Quit on hitting escape
function love.keypressed(k)
if k == 'escape' then
love.event.push('q') -- quit the game
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