UNPKG

@types/three

Version:
14 lines (10 loc) 519 B
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); }