Difference between revisions of "Event.TIMER"

From GiderosMobile
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Value:''' timer<br/>
'''<translate>Value</translate>:''' timer<br/>
+
'''Defined by:''' [[Timer]]<br/>
'''<translate>Defined by</translate>:''' [[Special:MyLanguage/Timer|Timer]]<br/>
+
 
=== <translate>Descriptio</translate>n ===
+
=== Description ===
<translate>This event is dispatched on every [[Special:MyLanguage/Timer|Timer]] repeat until timer is stopped or the provided amount of repeat count is reached</translate>
+
This event is dispatched on every Timer repeat until timer is stopped or the provided amount of repeat count is reached.
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
local timer = Timer.new(1000, 2) -- timer will execute 2 times with 1000ms delay
 +
timer:addEventListener(Event.TIMER, function()
 +
print("timer count: "..timer:getCurrentCount())
 +
end)
 +
timer:start()
 +
</syntaxhighlight>
  
 
{{Timer}}
 
{{Timer}}

Latest revision as of 01:45, 25 August 2024

Available since: Gideros 2011.6
Value: timer
Defined by: Timer

Description

This event is dispatched on every Timer repeat until timer is stopped or the provided amount of repeat count is reached.

Example

local timer = Timer.new(1000, 2) -- timer will execute 2 times with 1000ms delay
timer:addEventListener(Event.TIMER, function()
	print("timer count: "..timer:getCurrentCount())
end)
timer:start()