diff --git a/src/materials/MeshDepthMaterial.d.ts b/src/materials/MeshDepthMaterial.d.ts index 3609b9161696924733b09030d24cc75502ddf6a8..0a7db58971438bb3d38b4225f08515954114c567 100644 --- a/src/materials/MeshDepthMaterial.d.ts +++ b/src/materials/MeshDepthMaterial.d.ts @@ -3,6 +3,7 @@ import { MaterialParameters, Material } from './Material'; import { Texture } from './../textures/Texture'; export interface MeshDepthMaterialParameters extends MaterialParameters { + map?: Texture | null; alphaMap?: Texture | null; depthPacking?: DepthPackingStrategies; displacementMap?: Texture | null; diff --git a/src/materials/MeshDistanceMaterial.d.ts b/src/materials/MeshDistanceMaterial.d.ts index 54a3265c4092c2c34f3997194dbc9990aad58119..1390533eea0e405c01a31e204205065b37d7fad0 100644 --- a/src/materials/MeshDistanceMaterial.d.ts +++ b/src/materials/MeshDistanceMaterial.d.ts @@ -3,6 +3,7 @@ import { Vector3 } from './../math/Vector3'; import { Texture } from './../textures/Texture'; export interface MeshDistanceMaterialParameters extends MaterialParameters { + map?: Texture | null; alphaMap?: Texture | null; displacementMap?: Texture | null; displacementScale?: number;