starry / backend /libs /three /lights /AmbientLight.js
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Light } from './Light.js';
class AmbientLight extends Light {
constructor(color, intensity) {
super(color, intensity);
this.type = 'AmbientLight';
}
}
AmbientLight.prototype.isAmbientLight = true;
export { AmbientLight };