Class: TimerEvent

Phaser. TimerEvent

A TimerEvent is a single event that is processed by a Phaser.Timer. It consists of a delay, which is a value in milliseconds after which the event will fire.

new TimerEvent(timer, delay, tick, repeatCount, loop, callback, callbackContext, arguments)

A TimerEvent is a single event that is processed by a Phaser.Timer. It consists of a delay, which is a value in milliseconds after which the event will fire. It can call a specific callback, passing in optional parameters.

Parameters:
Name Type Description
timer Phaser.Timer

The Timer object that this TimerEvent belongs to.

delay number

The delay in ms at which this TimerEvent fires.

tick number

The tick is the next game clock time that this event will fire at.

repeatCount number

If this TimerEvent repeats it will do so this many times.

loop boolean

True if this TimerEvent loops, otherwise false.

callback function

The callback that will be called when the TimerEvent occurs.

callbackContext object

The context in which the callback will be called.

arguments array

The values to be passed to the callback.

Source:

Members

args

Properties:
Name Type Description
arguments array

The values to be passed to the callback.

Source:

callback

Properties:
Name Type Description
callback function

The callback that will be called when the TimerEvent occurs.

Source:

callbackContext

Properties:
Name Type Description
callbackContext object

The context in which the callback will be called.

Source:

delay

Properties:
Name Type Description
delay number

The delay in ms at which this TimerEvent fires.

Source:

loop

Properties:
Name Type Description
loop boolean

True if this TimerEvent loops, otherwise false.

Source:

<protected> pendingDelete

Properties:
Name Type Description
pendingDelete boolean

A flag that controls if the TimerEvent is pending deletion.

Source:

repeatCount

Properties:
Name Type Description
repeatCount number

If this TimerEvent repeats it will do so this many times.

Source:

tick

Properties:
Name Type Description
tick number

The tick is the next game clock time that this event will fire at.

Source:

timer

Properties:
Name Type Description
timer Phaser.Timer

The Timer object that this TimerEvent belongs to.

Source:
Phaser Copyright © 2012-2014 Photon Storm Ltd.
Documentation generated by JSDoc 3.3.0-dev on Mon Feb 24 2014 01:12:33 GMT-0000 (GMT) using the DocStrap template.