UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

16 lines 567 B
import { AmbientLight as ThreeAmbientLight } from "three"; import LightBase from "../core/LightBase"; import { ambientLightDefaults, ambientLightSchema } from "../../interface/IAmbientLight"; export default class AmbientLight extends LightBase { static componentName = "ambientLight"; static defaults = ambientLightDefaults; static schema = ambientLightSchema; constructor() { super(ThreeAmbientLight); } get castShadow() { return false; } set castShadow(_) { } } //# sourceMappingURL=AmbientLight.js.map