Event timer Revision Current Public Release (2018.3326) Keywords timer, source See also timer
A reference to the timer registered to send the event. This may be useful if you have multiple timers calling the same listener.
local function listener( event ) -- Print the reference to the timer print ( event.source ) end timer.performWithDelay( 1000, listener ) |