| Package | org.flintparticles.common.counters |
| Class | public class Steady |
| Implements | Counter |
| Property | Defined by | ||
|---|---|---|---|
| complete : Boolean [read-only]
Indicates if the counter has emitted all its particles.
| Steady | ||
| rate : Number
The number of particles to emit per second.
| Steady | ||
| Method | Defined by | ||
|---|---|---|---|
|
Steady(rate:Number = 0)
The constructor creates a Steady counter for use by an emitter.
| Steady | ||
|
resume():void
Resumes the emitter emitting particles after a stop
| Steady | ||
|
startEmitter(emitter:Emitter):uint
Initilizes the counter.
| Steady | ||
|
stop():void
Stops the emitter from emitting particles
| Steady | ||
|
updateEmitter(emitter:Emitter, time:Number):uint
Uses the time, rateMin and rateMax to calculate how many
particles the emitter should emit now.
| Steady | ||
| complete | property |
complete:Boolean [read-only]Indicates if the counter has emitted all its particles. For this counter this will always be false.
Implementation public function get complete():Boolean
| rate | property |
rate:Number [read-write]The number of particles to emit per second.
Implementation public function get rate():Number
public function set rate(value:Number):void
| Steady | () | constructor |
public function Steady(rate:Number = 0)The constructor creates a Steady counter for use by an emitter. To add a Steady counter to an emitter use the emitter's counter property.
Parametersrate:Number (default = 0) — The number of particles to emit per second.
|
See also
| resume | () | method |
public function resume():voidResumes the emitter emitting particles after a stop
| startEmitter | () | method |
public function startEmitter(emitter:Emitter):uintInitilizes the counter. Returns 0 to indicate that the emitter should emit no particles when it starts.
This method is called within the emitter's start method and need not be called by the user.
Parametersemitter:Emitter — The emitter.
|
uint — 0
|
See also
| stop | () | method |
public function stop():voidStops the emitter from emitting particles
| updateEmitter | () | method |
public function updateEmitter(emitter:Emitter, time:Number):uintUses the time, rateMin and rateMax to calculate how many particles the emitter should emit now.
This method is called within the emitter's update loop and need not be called by the user.
Parametersemitter:Emitter — The emitter.
|
|
time:Number — The time, in seconds, since the previous call to this method.
|
uint — the number of particles the emitter should create.
|
See also