Interface SphereEmitterParameters

Interface representing the parameters for a sphere emitter.

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

Properties

arc?: number

The arc of the sphere.

The mode of the emitter. EmitterMode

radius?: number

The radius of the sphere.

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

spread?: number

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

thickness?: number

The thickness of the sphere. 1 is a full sphere, 0 is a thin shell.