new ParticleSystemRamp1()
MEMBERS
-
values :Array
-
Array of keyframes representing the ramp. Each keyframe is specified as an array with two elements. The first element must be a number representing the time of the keyframe. Ramp evaluations are performed in the range 0-1, but keyframes may specify times outside this range. The second element must be a number. [DEFAULT: []]
METHODS
-
addKeyframe(x, y)
-
Adds a new keyframe. If a keyframe already exists at this time value, it is overwritten.
Parameters:
Name Type Attributes Default Description x
number The time value for this keyframe.
y
number The value stored at this keyframe.
-
isEqual(particleSystemRamp1) returns {boolean}
-
Tests whether another ParticleSystemRamp1 has identical contents to this ParticleSystemRamp1.
Parameters:
Name Type Attributes Default Description particleSystemRamp1
ParticleSystemRamp1 The ParticleSystemRamp1 to compare to.
Returns:
boolean