Browse Source

Merge pull request #17289 from higharc/fix-energy-preservation-dts

Make energyPreservation an optional parameter in ts
Michael Herzog 6 years ago
parent
commit
47ec048455
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/materials/MeshStandardMaterial.d.ts

+ 1 - 1
src/materials/MeshStandardMaterial.d.ts

@@ -29,7 +29,7 @@ export interface MeshStandardMaterialParameters extends MaterialParameters {
 	alphaMap?: Texture;
 	envMap?: Texture;
 	envMapIntensity?: number;
-	energyPreservation: boolean;
+	energyPreservation?: boolean;
 	refractionRatio?: number;
 	wireframe?: boolean;
 	wireframeLinewidth?: number;