Page 1 of 1

Why the video does not play again?

Posted: Wed Jun 01, 2016 1:15 pm
by Aydar.lua

Code: Select all

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(34)
        intro:play()
    end
end

function love.draw()
    love.graphics.draw(intro, 0, 0)
end

Re: Why the video does not play again?

Posted: Wed Jul 06, 2016 5:37 pm
by Luke100000
How long is the video? Maybe you jump to a location that does not exists.