Difference between revisions of "Timer.delayedCall"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Provides a simple way to call a function after a set amount of time. This function returns the<...") |
|||
| (12 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
| + | '''Class:''' [[Timer]]<br/> | ||
| + | |||
=== Description === | === Description === | ||
| − | + | Provides a simple way to call a function after a set amount of time. This function returns the '''Timer''' object created inside. | |
| − | Provides a simple way to call a function after a set amount of time. This function returns the | + | <syntaxhighlight lang="lua"> |
| − | + | (Timer) = Timer.delayedCall(delay,func,data) | |
| − | < | + | </syntaxhighlight> |
| − | + | ||
| − | (Timer) | + | === Parameters === |
| − | </ | + | '''delay''': (number) delay in miliseconds before the function is called<br/> |
| − | '''delay | + | '''func''': (function) function to call<br/> |
| − | '''func | + | '''data''': (any) an optional data parameter that is passed as a first argument to the function '''optional'''<br/> |
| − | '''data | + | |
| − | '''Returns''' (Timer) | + | === Return values === |
| + | '''Returns''' (Timer) the Timer object<br/> | ||
| + | |||
| + | {{Timer}} | ||
Latest revision as of 22:37, 24 August 2024
Available since: Gideros 2011.6
Class: Timer
Description
Provides a simple way to call a function after a set amount of time. This function returns the Timer object created inside.
(Timer) = Timer.delayedCall(delay,func,data)
Parameters
delay: (number) delay in miliseconds before the function is called
func: (function) function to call
data: (any) an optional data parameter that is passed as a first argument to the function optional
Return values
Returns (Timer) the Timer object