If newly spawned particles should be added to the back of the parent container (to make them less conspicuous as they pop in). If omitted, particles will be added to the top of the container.
If the Emitter should hook into PixiJS's shared ticker. If this is false or emitted, you will be responsible for connecting it to update ticks.
The list of behaviors to apply to this emitter. See the behaviors namespace for a list of built in behaviors. Custom behaviors may be registered with Emitter.registerBehavior.
Easing to be applied to all interpolated or stepped values across the particle lifetime.
If the emitter should start out emitting particles. If omitted, it will be treated as true
and will emit particles
immediately.
How long to run the Emitter before it stops spawning particles. If omitted, runs forever (or until told to stop manually).
How often to spawn particles. This is a value in seconds, so a value of 0.5 would be twice a second.
Random number configuration for picking the lifetime for each particle..
Maximum number of particles that can be alive at any given time for this emitter.
How many particles to spawn at once, each time that it is determined that particles should be spawned. If omitted, only one particle will spawn at a time.
Default position to spawn particles from inside the parent container.
Defines a chance to not spawn particles. Values lower than 1 mean particles may not be spawned each time. If omitted, particles will always spawn.
Generated using TypeDoc
Full Emitter configuration for initializing an Emitter instance.