UNPKG

lingo3d

Version:

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

16 lines 512 B
import { lightBaseDefaults, lightBaseSchema } from "./ILightBase"; import { extendDefaults } from "./utils/Defaults"; import Range from "./utils/Range"; export const pointLightBaseSchema = { ...lightBaseSchema, distance: Number, shadows: Boolean, fade: Boolean }; export const pointLightBaseDefaults = extendDefaults([lightBaseDefaults], { distance: 500, intensity: 10, shadows: true, fade: false }, { distance: new Range(100, 2000) }); //# sourceMappingURL=IPointLightBase.js.map