Update docstring for TimerEvent

I think the TimerEvent lifecycle could use some clarification so I updated the docstring to explain what happens when they are finished firing.
This commit is contained in:
Sean Irby 2016-06-02 17:47:31 -07:00
parent 9f28d0659d
commit 3c2003365d

View file

@ -9,7 +9,9 @@
*
* It consists of a delay, which is a value in milliseconds after which the event will fire.
* When the event fires it calls a specific callback with the specified arguments.
*
*
* TimerEvents are removed by their parent timer once finished firing or repeating.
*
* Use {@link Phaser.Timer#add}, {@link Phaser.Timer#repeat}, or {@link Phaser.Timer#loop} methods to create a new event.
*
* @class Phaser.TimerEvent