Browse Source

added typescript declaration

Daniel Sturk 6 years ago
parent
commit
7f5e885671
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/materials/MeshPhysicalMaterial.d.ts

+ 2 - 0
src/materials/MeshPhysicalMaterial.d.ts

@@ -8,6 +8,7 @@ export interface MeshPhysicalMaterialParameters
 	reflectivity?: number;
 	clearCoat?: number;
 	clearCoatRoughness?: number;
+	sheen?: number;
 }
 
 export class MeshPhysicalMaterial extends MeshStandardMaterial {
@@ -18,5 +19,6 @@ export class MeshPhysicalMaterial extends MeshStandardMaterial {
 	reflectivity: number;
 	clearCoat: number;
 	clearCoatRoughness: number;
+	sheen: number;
 
 }