love.audio.newSound( filename )
Usage
love.audio.newSound( filename )
Arguments
filenameThe filepath to the sound file.
Returns
SoundA Sound object containing the audio data.
Examples
Example 1: Add some sounds.
blaster = love.audio.newSound("blast.wav")
explosion = love.audio.newSound("boom.wav")