Interface HemisphereEmitterParameters

Interface representing the parameters for a hemisphere emitter.

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

Properties

arc?: number

The arc of the hemisphere.

The mode of the emitter. EmitterMode

radius?: number

The radius of the hemisphere.

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 hemisphere. 1 is a full hemisphere, 0 is a thin shell.