| Package | org.flintparticles.threeD.actions |
| Class | public class Move |
| Inheritance | Move ActionBase Object |
This action has a priority of -10, so that it executes after other actions.
| Method | Defined By | ||
|---|---|---|---|
Move()
The constructor creates a Move action for use by
an emitter. | Move | ||
![]() | addedToEmitter(emitter:Emitter):void
This method does nothing. | ActionBase | |
![]() | removedFromEmitter(emitter:Emitter):void
This method does nothing. | ActionBase | |
[override]
This method does nothing. | Move | ||
| Move | () | Constructor |
public function Move()The constructor creates a Move action for use by an emitter. To add a Move to all particles created by an emitter, use the emitter's addAction method.
See also
| update | () | method |
override public function update(emitter:Emitter, particle:Particle, time:Number):voidThis method does nothing. All derived classes override this method to update each particle every frame.
Parameters
emitter:Emitter — The Emitter that created the particle.
| |
particle:Particle — The particle to be updated.
| |
time:Number — The duration of the frame - used for time based updates.
|