@types/three
Version:
TypeScript definitions for three
14 lines (10 loc) • 519 B
TypeScript
import { MeshPhysicalMaterial, MeshPhysicalMaterialParameters, Texture } from "three";
export interface MeshPostProcessingMaterialParameters extends MeshPhysicalMaterialParameters {
aoPassMap?: Texture | null | undefined;
aoPassMapScale?: number | undefined;
}
export class MeshPostProcessingMaterial extends MeshPhysicalMaterial {
constructor(parameters: MeshPostProcessingMaterialParameters);
get aoPassMap(): Texture | null | undefined;
set aoPassMap(aoPassMap: Texture | null | undefined);
}