btw, this should beJasoco wrote: ↑Thu Mar 22, 2012 4:03 amCode: Select all
function love.update(dt) coroutine.yield(co) end
Code: Select all
function love.update(dt)
coroutine.resume(co)
end
btw, this should beJasoco wrote: ↑Thu Mar 22, 2012 4:03 amCode: Select all
function love.update(dt) coroutine.yield(co) end
Code: Select all
function love.update(dt)
coroutine.resume(co)
end