You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function StartCoroutine(func, ...)
local co = coroutine.create(func)
local flag, msg = coroutine.resume(co, ...)
if not flag then
msg = debug.traceback(co, msg)
error(msg)
end
return co
end
The text was updated successfully, but these errors were encountered:
应增加参数...
The text was updated successfully, but these errors were encountered: