| Package | org.flintparticles.common.events |
| Class | public class UpdateEvent |
| Inheritance | UpdateEvent flash.events.Event |
| Property | Defined By | ||
|---|---|---|---|
| time : Number
The particle to which the event relates. | UpdateEvent | ||
| UPDATE : String = update [static]
The event dispatched on the enter frame
| UpdateEvent | ||
| Method | Defined By | ||
|---|---|---|---|
UpdateEvent(type:String, time:Number, bubbles:Boolean = false, cancelable:Boolean = false)
The constructor creates a ParticleEvent object. | UpdateEvent | ||
clone():Event [override]
Creates a copy of this event. | UpdateEvent | ||
| time | property |
public var time:NumberThe particle to which the event relates.
| UPDATE | property |
public static var UPDATE:String = updateThe event dispatched on the enter frame
| UpdateEvent | () | Constructor |
public function UpdateEvent(type:String, time:Number, bubbles:Boolean = false, cancelable:Boolean = false)The constructor creates a ParticleEvent object.
Parameterstype:String — The type of the event, accessible as Event.type.
| |
time:Number (default = NaN) — The particle to which teh event relates.
| |
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.
|
| clone | () | method |
override public function clone():EventCreates a copy of this event.
ReturnsEvent — The copy of this event.
|