Difference between revisions of "Core.yield"

From GiderosMobile
m (formatting)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
+
'''Available since:''' Gideros 2016.06<br/>
 +
'''Class:''' [[Core]]<br/>
  
<languages />
+
=== Description ===
 +
Yield function running as background task.
 +
<syntaxhighlight lang="lua">
 +
Core.yield(state)
 +
</syntaxhighlight>
  
'''<translate>Available since</translate>:''' Gideros 2016.06<br/>
+
Core.yield([number of seconds to wait])
'''<translate>Class</translate>:''' [[Special:MyLanguage/Core|Core]]<br/>
 
  
=== <translate>Description</translate> ===
+
Core.yield(true) -- yield for a single frame and disable auto yield
<translate>Yield function running as background task.</translate>
 
  
Core.yield([number of seconds to wait])
 
<br/>
 
Core.yield(true) -- yield for a single frame and disable auto yield
 
<br/>
 
 
Core.yield(false) -- don't yield now, but reenable autoyield
 
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<br/>
  
<source lang="lua">
+
{{Core}}
Core.yield(state)
 
</source>
 
 
 
 
 
=== <translate>Parameters</translate> ===
 
'''state''': (number or boolean) <translate>number of seconds to yield or boolean to enable/disable auto yield</translate>
 
<br/>
 
<br/>
 

Latest revision as of 15:27, 13 July 2023

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