postprocessing - v7.0.0-beta.16
    Preparing search index...

    Interface BloomEffectOptions

    BloomEffect options.

    interface BloomEffectOptions {
        clampToBorder?: boolean;
        fullResolutionUpsampling?: boolean;
        intensity?: number;
        levels?: number;
        luminanceSmoothing?: number;
        luminanceThreshold?: number;
        radius?: number;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    clampToBorder?: boolean

    Controls whether the sampling coordinates should be clamped to a black border.

    true
    
    fullResolutionUpsampling?: boolean

    Controls whether the image should be scaled up to the original resolution.

    If disabled, the upsampling process will stop at half resolution.

    false
    
    intensity?: number

    The bloom intensity.

    1
    
    levels?: number

    The amount of MIP levels.

    At 720p 8 steps are likely too much, while at 4K they might not be enough. Must be greater than 0.

    8
    
    luminanceSmoothing?: number

    Controls the smoothness of the luminance threshold.

    0.03
    
    luminanceThreshold?: number

    The luminance threshold. Raise this value to mask out darker elements in the scene.

    1
    
    radius?: number

    The blur radius.

    0.85