import { type Nullable } from "../types.js"; import { type SubSurfaceConfiguration } from "./subSurfaceConfiguration.js"; declare module "../scene.pure.js" { interface Scene { /** @internal (Backing field) */ _subSurfaceConfiguration: Nullable; /** * Gets or Sets the current prepass renderer associated to the scene. */ subSurfaceConfiguration: Nullable; /** * Enables the subsurface effect for prepass * @returns the SubSurfaceConfiguration */ enableSubSurfaceForPrePass(): Nullable; /** * Disables the subsurface effect for prepass */ disableSubSurfaceForPrePass(): void; } }