show |
Boolean
|
true
|
optional
Whether to display the particle system. |
forces |
Array.<ParticleSystem~applyForce>
|
|
optional
An array of force callbacks. This has been deprecated. Use updateCallback instead. |
updateCallback |
ParticleSystem~updateCallback
|
|
optional
The callback function to be called each frame to update a particle. |
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. |
rate |
Number
|
5
|
optional
The number of particles to emit per second. This has been deprecated. Use emissionRate instead. |
emissionRate |
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 its bursts when it is complete. |
scale |
Number
|
1.0
|
optional
Sets the scale to apply to the image of the particle for the duration of its particleLife. |
startScale |
Number
|
|
optional
The initial scale to apply to the image of the particle at the beginning of its life. |
endScale |
Number
|
|
optional
The final scale to apply to the image of the particle at the end of its life. |
color |
Color
|
Color.WHITE
|
optional
Sets the color of a particle for the duration of its particleLife. |
startColor |
Color
|
|
optional
The color of the particle at the beginning of its life. |
endColor |
Color
|
|
optional
The color of the particle at the end of its life. |
image |
Object
|
|
optional
The URI, HTMLImageElement, or HTMLCanvasElement to use for the billboard. |
width |
Number
|
1.0
|
optional
Sets the minimum and maximum width of particles in pixels. This has been deprecated. Use imageSize's x component instead. |
minimumWidth |
Number
|
|
optional
Sets the minimum width of particles in pixels. This has been deprecated. Use minimumImageSize's x component instead. |
maximumWidth |
Number
|
|
optional
Sets the maximum width of particles in pixels. This has been deprecated. Use maximumImageSize's x component instead. |
height |
Number
|
1.0
|
optional
Overwrites the minimum and maximum height of particles in pixels. This has been deprecated. Use imageSize's y component instead. |
minimumHeight |
Number
|
|
optional
Sets the minimum height of particles in pixels. This has been deprecated. Use minimumImageSize's y component instead. |
maximumHeight |
Number
|
|
optional
Sets the maximum height of particles in pixels. This has been deprecated. Use maximumImageSize's y component instead. |
imageSize |
Cartesian2
|
new Cartesian2(1.0, 1.0)
|
optional
If set, overrides the minimumImageSize and maximumImageSize inputs that scale the particle image's dimensions in pixels. |
minimumImageSize |
Cartesian2
|
|
optional
Sets the minimum bound, width by height, above which to randomly scale the particle image's dimensions in pixels. |
maximumImageSize |
Cartesian2
|
|
optional
Sets the maximum bound, width by height, below which to randomly scale the particle image's dimensions in pixels. |
speed |
Number
|
1.0
|
optional
If set, overrides the minimumSpeed and maximumSpeed inputs with this value. |
minimumSpeed |
Number
|
|
optional
Sets the minimum bound in meters per second above which a particle's actual speed will be randomly chosen. |
maximumSpeed |
Number
|
|
optional
Sets the maximum bound in meters per second below which a particle's actual speed will be randomly chosen. |
lifeTime |
Number
|
Number.MAX_VALUE
|
optional
How long the particle system will emit particles, in seconds. This has been deprecated. Use lifetime instead. |
lifetime |
Number
|
Number.MAX_VALUE
|
optional
How long the particle system will emit particles, in seconds. |
life |
Number
|
5.0
|
optional
If set, overrides the minimumLife and maximumLife inputs with this value. This has been deprecated. Use particleLife instead. |
minimumLife |
Number
|
|
optional
Sets the minimum life of particles in seconds. This has been deprecated. Use minimumParticleLife instead. |
maximumLife |
Number
|
|
optional
Sets the maximum life of particles in seconds. This has been deprecated. Use maximumParticleLife instead. |
particleLife |
Number
|
5.0
|
optional
If set, overrides the minimumParticleLife and maximumParticleLife inputs with this value. |
minimumParticleLife |
Number
|
|
optional
Sets the minimum bound in seconds for the possible duration of a particle's life above which a particle's actual life will be randomly chosen. |
maximumParticleLife |
Number
|
|
optional
Sets the maximum bound in seconds for the possible duration of a particle's life below which a particle's actual life will be randomly chosen. |
mass |
Number
|
1.0
|
optional
Sets the minimum and maximum mass of particles in kilograms. |
minimumMass |
Number
|
|
optional
Sets the minimum bound for the mass of a particle in kilograms. A particle's actual mass will be chosen as a random amount above this value. |
maximumMass |
Number
|
|
optional
Sets the maximum mass of particles in kilograms. A particle's actual mass will be chosen as a random amount below this value. |