@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
20 lines (19 loc) • 537 B
TypeScript
import type { PrePassEffectConfiguration } from "./prePassEffectConfiguration.js";
/**
* 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[];
}