Version 0.3.2
LÖVE Documentation
OverviewLicenseCreditsInstallingGetting started
Devices
love.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timerlove.system
Types
AnimationColorFontFileImageMusicParticleSystemSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Callback
keyreleased( key )
Usage
function keyreleased( key ) ... end
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