UNPKG

lingo3d

Version:

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

11 lines 507 B
import { extendDefaults } from "./utils/Defaults"; import Range from "./utils/Range"; import { meshAppendableDefaults, meshAppendableSchema } from "./IMeshAppendable"; export const skyLightSchema = { ...meshAppendableSchema, intensity: Number, color: String, shadows: Boolean }; export const skyLightDefaults = extendDefaults([meshAppendableDefaults], { intensity: 1, color: "#ffffff", shadows: true }, { intensity: new Range(0, 10) }, { color: true }); //# sourceMappingURL=ISkyLight.js.map