starry / backend /libs /three /lights /SpotLightShadow.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { PerspectiveCamera } from './../cameras/PerspectiveCamera';
import { LightShadow } from './LightShadow';
export class SpotLightShadow extends LightShadow {
camera: PerspectiveCamera;
readonly isSpotLightShadow: true;
/**
* @default 1
*/
focus: number;
}