show |
Boolean
|
true
|
optional
Whether to display the particle system. |
forces |
Array.<ParticleSystem~applyForce>
|
|
optional
An array of force callbacks. |
emitter |
ParticleEmitter
|
new CircleEmitter(0.5)
|
optional
The particle emitter for this system. |
modelMatrix |
Matrix4
|
Matrix4.IDENTITY
|
optional
The 4x4 transformation matrix that transforms the particle system from model to world coordinates. |
emitterModelMatrix |
Matrix4
|
Matrix4.IDENTITY
|
optional
The 4x4 transformation matrix that transforms the particle system emitter within the particle systems local coordinate system. |
startColor |
Color
|
Color.WHITE
|
optional
The color of a particle when it is born. |
endColor |
Color
|
Color.WHITE
|
optional
The color of a particle when it dies. |
startScale |
Number
|
1.0
|
optional
The scale of the particle when it is born. |
endScale |
Number
|
1.0
|
optional
The scale of the particle when it dies. |
rate |
Number
|
5
|
optional
The number of particles to emit per second. |
bursts |
Array.<ParticleBurst>
|
|
optional
An array of ParticleBurst , emitting bursts of particles at periodic times. |
loop |
Boolean
|
true
|
optional
Whether the particle system should loop it's bursts when it is complete. |
speed |
Number
|
|
optional
Sets the minimum and maximum speed in meters per second |
minimumSpeed |
Number
|
1.0
|
optional
Sets the minimum speed in meters per second. |
maximumSpeed |
Number
|
1.0
|
optional
Sets the maximum speed in meters per second. |
life |
Number
|
|
optional
Sets the minimum and maximum life of particles in seconds. |
minimumLife |
Number
|
5.0
|
optional
Sets the minimum life of particles in seconds. |
maximumLife |
Number
|
5.0
|
optional
Sets the maximum life of particles in seconds. |
mass |
Number
|
|
optional
Sets the minimum and maximum mass of particles in kilograms. |
minimumMass |
Number
|
1.0
|
optional
Sets the minimum mass of particles in kilograms. |
maximumMass |
Number
|
1.0
|
optional
Sets the maximum mass of particles in kilograms. |
image |
Object
|
|
optional
The URI, HTMLImageElement, or HTMLCanvasElement to use for the billboard. |
width |
Number
|
|
optional
Sets the minimum and maximum width of particles in pixels. |
minimumWidth |
Number
|
1.0
|
optional
Sets the minimum width of particles in pixels. |
maximumWidth |
Number
|
1.0
|
optional
Sets the maximum width of particles in pixels. |
height |
Number
|
|
optional
Sets the minimum and maximum height of particles in pixels. |
minimumHeight |
Number
|
1.0
|
optional
Sets the minimum height of particles in pixels. |
maximumHeight |
Number
|
1.0
|
optional
Sets the maximum height of particles in pixels. |
lifeTime |
Number
|
Number.MAX_VALUE
|
optional
How long the particle system will emit particles, in seconds. |