File size: 491 Bytes
6cd9596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}