Optional flame rendered at the aircraft exhaust point when speed is high.

Set true to use defaults or pass this object to tune threshold, length, radius and flicker.

interface AircraftAfterburnerConfig {
    coreRadiusScale?: number;
    enabled?: boolean;
    flicker?: number;
    haloRadiusScale?: number;
    length?: number;
    minLength?: number;
    radialSegments?: number;
    radius?: number;
    threshold?: number;
}

Properties

coreRadiusScale?: number

Radius multiplier for the bright inner core layer.

enabled?: boolean

Explicitly disable an inherited/configured afterburner.

flicker?: number

Sinusoidal size variation applied to the flame.

haloRadiusScale?: number

Radius multiplier for the outer halo layer.

length?: number

Maximum flame length at full speed.

minLength?: number

Minimum flame length once the threshold is crossed.

radialSegments?: number

Number of radial sides used by the flame geometry.

radius?: number

Base flame radius.

threshold?: number

Normalized speed threshold in [0, 1] before the flame appears.