Difference between revisions of "Core.yield"
From GiderosMobile
m |
m |
||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Yield function running as background task. | Yield function running as background task. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
<source lang="lua"> | <source lang="lua"> | ||
Core.yield(state) | Core.yield(state) | ||
</source> | </source> | ||
+ | |||
+ | Core.yield([number of seconds to wait]) | ||
+ | |||
+ | Core.yield(true) -- yield for a single frame and disable auto yield | ||
+ | |||
+ | Core.yield(false) -- don't yield now, but reenable autoyield | ||
=== Parameters === | === Parameters === | ||
'''state''': (number or boolean) number of seconds to yield or boolean to enable/disable auto yield<br/> | '''state''': (number or boolean) number of seconds to yield or boolean to enable/disable auto yield<br/> | ||
− | |||
{{Core}} | {{Core}} |
Revision as of 05:29, 9 January 2022
Available since: Gideros 2016.06
Class: Core
Description
Yield function running as background task.
Core.yield(state)
Core.yield([number of seconds to wait])
Core.yield(true) -- yield for a single frame and disable auto yield
Core.yield(false) -- don't yield now, but reenable autoyield
Parameters
state: (number or boolean) number of seconds to yield or boolean to enable/disable auto yield