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
Device
love.audio
Functions
newSound( filename )Loads a sound file.
newMusic( filename )Loads a music file.
play( sound )Plays a sound.
play( sound, loop )Plays/loops a sound.
play( music )Plays music.
play( music, loop )Plays/loops music.
pause( )Pauses all audio playback.
resume( )Resumes all audio playback.
stop( )Stops all audio playback.
isPlaying( )Checks whether (any) audio is playing or not.
isPaused( )Checks whether audio playback is paused or not.
setVolume( volume )Changes the master volume.
See also