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

    Interface GaussianBlurPassOptions

    GaussianBlurPass constructor options.

    interface GaussianBlurPassOptions {
        iterations?: number;
        kernelSize?: number;
    }

    Implemented by

    Index

    Properties

    iterations?: number

    The amount of times the blur should be applied.

    1
    
    kernelSize?: number

    The kernel size. Should be an odd number in the range [3, 1020].

    35