Difference between revisions of "Coroutine.create"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/coroutine|coroutine]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/coroutine|coroutine]]<br/>

Revision as of 10:57, 3 September 2018


Available since: Gideros 2011.6
Class: coroutine

Description

Creates a new coroutine, with body f. f must be a Lua function. Returns this new coroutine, an object with type "thread".

(coroutine) = coroutine.create(f)

Parameters

f: (function) lua function

Return values

Returns (coroutine) created coroutine