File size: 272 Bytes
2b7aae2
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { PerspectiveCamera } from './../cameras/PerspectiveCamera';
import { LightShadow } from './LightShadow';

export class SpotLightShadow extends LightShadow {
	camera: PerspectiveCamera;
	readonly isSpotLightShadow: true;

	/**
	 * @default 1
	 */
	focus: number;
}