| Package | org.flintparticles.common.events |
| Class | public class EmitterEvent |
| Inheritance | EmitterEvent flash.events.Event |
| Property | Defined By | ||
|---|---|---|---|
| COUNTER_COMPLETE : String = counterComplete [static]
The event dispatched by an emitter when it's counter has completed it's full
lifecycle and will not emit any further particles. | EmitterEvent | ||
| EMITTER_EMPTY : String = emitterEmpty [static]
The event dispatched by an emitter when it currently has no particles
to display. | EmitterEvent | ||
| EMITTER_UPDATED : String = emitterUpdated [static]
The event dispatched by an emitter when it has updated all its particles
and is ready for them to be rendered. | EmitterEvent | ||
| Method | Defined By | ||
|---|---|---|---|
EmitterEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
The constructor creates a EmitterEvent object. | EmitterEvent | ||
| COUNTER_COMPLETE | property |
public static var COUNTER_COMPLETE:String = counterCompleteThe event dispatched by an emitter when it's counter has completed it's full lifecycle and will not emit any further particles.
| EMITTER_EMPTY | property |
public static var EMITTER_EMPTY:String = emitterEmptyThe event dispatched by an emitter when it currently has no particles to display.
| EMITTER_UPDATED | property |
public static var EMITTER_UPDATED:String = emitterUpdatedThe event dispatched by an emitter when it has updated all its particles and is ready for them to be rendered. Renderers usually listen for this event to know when to redraw the particles.
| EmitterEvent | () | Constructor |
public function EmitterEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)The constructor creates a EmitterEvent object.
Parameterstype:String — The type of the event, accessible as Event.type.
| |
bubbles:Boolean (default = false) — Determines whether the Event object participates
in the bubbling stage of the event flow. The default value is false.
| |
cancelable:Boolean (default = false) — Determines whether the Event object can be
canceled. The default values is false.
|