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
Function
love.audio.isPlaying( )
Usage
love.audio.isPlaying( )
Arguments
None
Returns
booleanTrue if audio is playing, false otherwise
Examples
Example 1: Check if any audio is playing. love.audio.play(music_track)
value = love.audio.isPlaying() -- true
love.audio.stop()
value = love.audio.isPlaying() -- false