UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

17 lines 627 B
import LayeredMaterial from './LayeredMaterial'; export type ShadowMode = 'distance' | 'depth'; type ConstructorParams = ConstructorParameters<typeof LayeredMaterial>[0] & { source: LayeredMaterial; shadowMode: ShadowMode; }; export default class ShadowLayeredMaterial extends LayeredMaterial { private readonly _shadowMode; private readonly _source; readonly isMeshDistanceMaterial: boolean; readonly isMeshDepthMaterial: boolean; constructor(opts: ConstructorParams); private copyElevationParameters; onBeforeRender(): void; } export {}; //# sourceMappingURL=ShadowLayeredMaterial.d.ts.map