Version 0.1.1a
LÖVE Documentation
OverviewLicenceCreditsGetting started
Devices
love.objectslove.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timer
Types
ColorFontImageMusicSound
Callbacks
loadupdaterendermousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig files
Function
keyreleased( key )
Usage
keyreleased( key )
Arguments
keyThe key code of the released key.
Returns
Nothing
Examples
Example 1: function keyreleased(key)
   if key == love.key_enter then
      print("Enter was released")
   end
end