in fact it can loop, but not natively ... did an alternative code for that:ingsoc451 wrote:At least it doesn't loop
You can addCode: Select all
function love.keypressed(k) if k == "escape" then video:pause() end end
Code: Select all
if vid:isPlaying() == false then --loop
vid:pause()
vid:rewind()
vid:play()
end