Hilo3d API - v2.0.0-alpha.3
    Preparing search index...

    Interface BloomOptions

    Quality and shape controls for the HDR bloom pyramid.

    interface BloomOptions {
        clamp?: number;
        intensity?: number;
        knee?: number;
        maxLevels?: number;
        minResolution?: number;
        scatter?: number;
        threshold?: number;
        tint?: Color;
    }
    Index
    clamp?: number

    Maximum prefilter value used to contain fireflies. Defaults to 65,000.

    intensity?: number

    Final additive bloom intensity. Defaults to 0.8.

    knee?: number

    Soft-threshold width. Defaults to 0.5.

    maxLevels?: number

    Maximum number of half-resolution pyramid levels. Defaults to 6.

    minResolution?: number

    Smallest pyramid dimension. Defaults to 16 pixels.

    scatter?: number

    Energy passed from each coarser level during tent upsampling. Defaults to 0.7.

    threshold?: number

    Linear HDR threshold. Defaults to 1.

    tint?: Color

    Bloom tint in linear color. Defaults to white.