lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
13 lines • 495 B
JavaScript
import { AmbientLight as ThreeAmbientLight } from "three";
import LightBase from "../core/LightBase";
import { ambientLightDefaults, ambientLightSchema } from "../../interface/IAmbientLight";
class AmbientLight extends LightBase {
static componentName = "ambientLight";
static defaults = ambientLightDefaults;
static schema = ambientLightSchema;
constructor() {
super(new ThreeAmbientLight());
}
}
export default AmbientLight;
//# sourceMappingURL=AmbientLight.js.map