coroutine.resume
From Garry's Mod
Contents |
Description
Resumes the given coroutine and passes the given vararg to either the function arguments or the coroutine.yield that is inside that function and returns whatever yield is called with the next time or by the final return in the function.
Arguments
thread coroutine
Coroutine to resume.
Arguments
Returns
If the executed thread code had no errors occur within it.
Returns
If an error occured, this will be a string containing the error message. Otherwise, this will be arguments that were yielded.