starry / backend /libs /three /materials /ShadowMaterial.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { ColorRepresentation } from '../utils';
import { Color } from './../math/Color';
import { MaterialParameters, Material } from './Material';
export interface ShadowMaterialParameters extends MaterialParameters {
color?: ColorRepresentation | undefined;
}
export class ShadowMaterial extends Material {
constructor(parameters?: ShadowMaterialParameters);
/**
* @default 'ShadowMaterial'
*/
type: string;
/**
* @default new THREE.Color( 0x000000 )
*/
color: Color;
/**
* @default true
*/
transparent: boolean;
}