web3d / node_modules /three /src /lights /SpotLightShadow.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
259 Bytes
import { PerspectiveCamera } from './../cameras/PerspectiveCamera';
import { Light } from './Light';
import { LightShadow } from './LightShadow';
export class SpotLightShadow extends LightShadow {
camera: PerspectiveCamera;
update(light: Light): void;
}