Interface CircleEmitterParameters

Interface representing the parameters for a circle emitter.

interface CircleEmitterParameters {
    arc?: number;
    mode?: EmitterMode;
    radius?: number;
    speed?: ValueGenerator | FunctionValueGenerator;
    spread?: number;
    thickness?: number;
}

Properties

arc?: number

The arc of the circle.

The mode of the emitter. EmitterMode

radius?: number

The radius of the circle.

The speed of the emitter start point travels when mode is EmitterMode.Loop or EmitterMode.PingPong. EmitterMode

spread?: number

The length of segment of which emitter point converges at the start and end, when mode is EmitterMode.Loop or EmitterMode.PingPong. EmitterMode

thickness?: number

The thickness of the ring. 1 is a full circle, 0 is a ring with 0 radius.