How do I use the love.video element
Posted: Thu Jul 01, 2021 1:33 am
I have read the love.video wiki but I still dont understand it and I've searched for videos about it but I can't find one, please help how do i use it?
Code: Select all
function love.load()
video = love.graphics.newVideo("myvideo.ogv")
video:play()
end
function love.draw()
love.graphics.draw(video, 0, 0)
end