【Defold】Coroutine 処理を行う
目次
公式
https://defold.com/ref/coroutine/
local function async(func)
local co = coroutine.running()
func(function()
local ok, err = coroutine.resume(co)
if not ok then print(err) end
end)
coroutine.yield()
end