12345678910111213141516171819 |
- import type { PrePassEffectConfiguration } from "./prePassEffectConfiguration";
- /**
- * Contains all parameters needed for the prepass to perform
- * screen space subsurface scattering
- */
- export declare class SSAO2Configuration implements PrePassEffectConfiguration {
- /**
- * Is subsurface enabled
- */
- enabled: boolean;
- /**
- * Name of the configuration
- */
- name: string;
- /**
- * Textures that should be present in the MRT for this effect to work
- */
- readonly texturesRequired: number[];
- }
|