Module
love.keyboard
Keeps track of the state of the keyboard.
Functions
isDown( key ) Checks whether a certain key is down.
Examples
Example 10: Checking if a key is down
function draw()
    -- Checks whether the return key is down or not.

    if love.keyboard.isDown(love.key_return) then
        love.graphics.draw("The key is down.", 50, 50)
    else
        love.graphics.draw("The key isn't down.", 50, 50)
    end
end
Copyright © 2006-2008 LÖVE Development Team.