starry / backend /libs /three /lights /DirectionalLightShadow.js
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
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 };