Browse Source

fixed formatting

Daniel Sturk 6 years ago
parent
commit
c42ccfbf0c
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/materials/MeshPhysicalMaterial.d.ts

+ 3 - 1
src/materials/MeshPhysicalMaterial.d.ts

@@ -17,7 +17,8 @@ export interface MeshPhysicalMaterialParameters
 }
 
 export class MeshPhysicalMaterial extends MeshStandardMaterial {
-	constructor(parameters: MeshPhysicalMaterialParameters);
+
+	constructor( parameters: MeshPhysicalMaterialParameters );
 
 	defines: any;
 	reflectivity: number;
@@ -27,4 +28,5 @@ export class MeshPhysicalMaterial extends MeshStandardMaterial {
 
 	clearCoatNormalScale: Vector2;
 	clearCoatNormalMap: Texture | null;
+
 }