We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c07dbe4 commit 11390afCopy full SHA for 11390af
lib/src/simulator.ts
@@ -30,11 +30,15 @@ let mouseX = 0,
30
type Vector2D = [number, number];
31
32
export interface ParticlesOptions {
33
+ /** @defaultValue 100_000 */
34
maxParticles?: number;
35
+ /** @defaultValue 0.5 */
36
generationRate?: number;
37
+ /** @defaultValue false */
38
overlay?: boolean;
39
40
mouseOff?: boolean;
- /** min and max Angles in radians: -Math.PI to Math.PI */
41
+ /** min and max Angles in radians: @defaultValue [-Math.PI, Math.PI] */
42
angleRage?: [number, number];
43
/** todo */
44
/** min and max age of particles */
0 commit comments