UNPKG

lingo3d

Version:

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

12 lines 415 B
import { planeDefaults, planeSchema } from "./IPlane"; import { extendDefaults } from "./utils/Defaults"; import Range from "./utils/Range"; export const areaLightSchema = { ...planeSchema, intensity: Number }; export const areaLightDefaults = extendDefaults([planeDefaults], { intensity: 1, emissive: true }, { intensity: new Range(0, 10) }, { color: true }); //# sourceMappingURL=IAreaLight.js.map