Spaces:
Running
Running
File size: 353 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { LightShadow } from './LightShadow.js';
import { OrthographicCamera } from '../cameras/OrthographicCamera.js';
class DirectionalLightShadow extends LightShadow {
constructor() {
super(new OrthographicCamera(-5, 5, 5, -5, 0.5, 500));
}
}
DirectionalLightShadow.prototype.isDirectionalLightShadow = true;
export { DirectionalLightShadow };
|