doggydog-3d / node_modules /three /src /materials /MeshPhysicalMaterial.d.ts
machineuser
version control dist & node_modules...
263e0f2
raw
history blame contribute delete
491 Bytes
import {
MeshStandardMaterialParameters,
MeshStandardMaterial,
} from './MeshStandardMaterial';
export interface MeshPhysicalMaterialParameters
extends MeshStandardMaterialParameters {
reflectivity?: number;
clearCoat?: number;
clearCoatRoughness?: number;
}
export class MeshPhysicalMaterial extends MeshStandardMaterial {
constructor(parameters: MeshPhysicalMaterialParameters);
defines: any;
reflectivity: number;
clearCoat: number;
clearCoatRoughness: number;
}