Search found 1 match
- Wed Jun 01, 2016 1:15 pm
- Forum: Support and Development
- Topic: Why the video does not play again?
- Replies: 1
- Views: 1663
Why the video does not play again?
function love.load() icon = love.graphics.newImage("icon.png") love.window.setIcon(icon:getData()) love.window.setTitle("Save your life") intro = love.graphics.newVideo("intro.ogv") intro:play() end function love.update(dt) if intro:isPlaying() == false then intro:seek...