Difference between revisions of "love.keyboard.isDown"

m
Line 22: Line 22:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Checks whether a certain key is down.}}
 
{{#set:Description=Checks whether a certain key is down.}}
 +
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.keyboard.isDown}}
 
{{i18n|love.keyboard.isDown}}

Revision as of 10:32, 25 March 2011

Checks whether a certain key is down.

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