Illutions Engine API - v0.26.0
    Preparing search index...

    Interface PostCfg

    Defines the post-processing settings used by the rendering pipeline.

    interface PostCfg {
        aa: AaCfg;
        guiOpened: boolean;
        ssao: SsaoCfg;
        ssr: SsrCfg;
        webgl: { aa: { fxaa: FxaaCfg }; ssao: SsaoWebGlCfg; ssr: SsrWebGlCfg };
        webgpu: { ssao: SsaoWebGpuCfg; ssr: SsrWebGpuCfg };
    }
    Index
    aa: AaCfg

    Anti-aliasing settings.

    guiOpened: boolean

    Whether the GUI post-processing dropdown is open.

    false
    
    ssao: SsaoCfg

    Shared SSAO settings.

    ssr: SsrCfg

    Shared SSR settings.

    webgl: { aa: { fxaa: FxaaCfg }; ssao: SsaoWebGlCfg; ssr: SsrWebGlCfg }

    WebGL post-processing settings.

    Type Declaration

    webgpu: { ssao: SsaoWebGpuCfg; ssr: SsrWebGpuCfg }

    WebGPU post-processing settings.

    Type Declaration