How do I use the love.video element
Posted: Wed Jun 30, 2021 7:40 pm
I have read the love.video wiki but it just doesn't make sense.
if someone who knows how to use it can explain it to me I would be grateful thx
here's my code
if someone who knows how to use it can explain it to me I would be grateful thx
Code: Select all
function love.load()
Video = love.graphics.newVideo("nice-anim.ogv")
end
function love.update(dt)
Video:play(true)
end
function love.draw()
end