Why the video does not play again?

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Post Reply
Aydar.lua
Prole
Posts: 1
Joined: Wed Jun 01, 2016 1:01 pm

Why the video does not play again?

Post 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
User avatar
Luke100000
Party member
Posts: 232
Joined: Mon Jul 22, 2013 9:17 am
Location: Austria
Contact:

Re: Why the video does not play again?

Post by Luke100000 »

How long is the video? Maybe you jump to a location that does not exists.
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot], Amazon [Bot] and 6 guests