web3d / node_modules /three /src /materials /MeshPhysicalMaterial.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
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;
}