You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/framework/components/particle-system/component.js
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -171,18 +171,18 @@ var depthLayer;
171
171
*
172
172
* @property {Vec3} particleNormal (Only for PARTICLEORIENTATION_WORLD and PARTICLEORIENTATION_EMITTER) The exception of extents of a local space bounding box within which particles are not spawned. Aligned to the center of EmitterExtents.
173
173
* @property {CurveSet} localVelocityGraph Velocity relative to emitter over lifetime.
174
-
* @property {CurveSet} localVelocityGraph2 If not null, particles pick random values between localVelocityGraph and localVelocityGraph2.
174
+
* @property {CurveSet} localVelocityGraph2 Particles pick random values between localVelocityGraph and localVelocityGraph2.
175
175
* @property {CurveSet} velocityGraph World-space velocity over lifetime.
176
-
* @property {CurveSet} velocityGraph2 If not null, particles pick random values between velocityGraph and velocityGraph2.
176
+
* @property {CurveSet} velocityGraph2 Particles pick random values between velocityGraph and velocityGraph2.
177
177
* @property {CurveSet} colorGraph Color over lifetime.
178
178
* @property {Curve} rotationSpeedGraph Rotation speed over lifetime.
179
-
* @property {Curve} rotationSpeedGraph2 If not null, particles pick random values between rotationSpeedGraph and rotationSpeedGraph2.
179
+
* @property {Curve} rotationSpeedGraph2 Particles pick random values between rotationSpeedGraph and rotationSpeedGraph2.
180
180
* @property {Curve} radialSpeedGraph Radial speed over lifetime, velocity vector points from emitter origin to particle pos.
181
-
* @property {Curve} radialSpeedGraph2 If not null, particles pick random values between radialSpeedGraph and radialSpeedGraph2.
181
+
* @property {Curve} radialSpeedGraph2 Particles pick random values between radialSpeedGraph and radialSpeedGraph2.
182
182
* @property {Curve} scaleGraph Scale over lifetime.
183
-
* @property {Curve} scaleGraph2 If not null, particles pick random values between scaleGraph and scaleGraph2.
183
+
* @property {Curve} scaleGraph2 Particles pick random values between scaleGraph and scaleGraph2.
184
184
* @property {Curve} alphaGraph Alpha over lifetime.
185
-
* @property {Curve} alphaGraph2 If not null, particles pick random values between alphaGraph and alphaGraph2.
185
+
* @property {Curve} alphaGraph2 Particles pick random values between alphaGraph and alphaGraph2.
186
186
* @property {number[]} layers An array of layer IDs ({@link Layer#id}) to which this particle system should belong.
187
187
* Don't push/pop/splice or modify this array, if you want to change it - set a new one instead.
0 commit comments