Version 0.2.0
LÖVE Documentation
OverviewLicenceCreditsGetting started
Devices
love.objectslove.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timer
Types
AnimationColorFontImageMusicSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Function
keypressed( key )
Usage
keypressed( key )
Arguments
keyThe key code of the pressed key.
Returns
Nothing
Examples
Example 1: function keypressed(key)
   if key == love.key_enter then
      print("Enter was pressed")
   end
end