W3cubDocs

/LÖVE

Source:setLooping

Sets whether the Source should loop.

Function

Synopsis

Source:setLooping( loop )

Arguments

boolean loop
True if the source should loop, false otherwise.

Returns

Nothing.

Examples

function love.load()
    music = love.audio.newSource("music_loop.wav")
 
    music:setLooping(true)
    music:play()
    -- Music will now play forever, until stopped or paused.
end

See Also


© 2006–2016 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/Source:setLooping