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

    Interface MipmapBlurPassOptions

    MipmapBlurPass constructor options.

    interface MipmapBlurPassOptions {
        clampToBorder?: boolean;
        fullResolutionUpsampling?: boolean;
        levels?: 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
    
    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
    
    radius?: number

    The blur radius.

    0.85