lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
13 lines • 476 B
JavaScript
import { objectManagerDefaults, objectManagerSchema } from "./IObjectManager";
import { extendDefaults } from "./utils/Defaults";
import Range from "./utils/Range";
export const lightBaseSchema = {
...objectManagerSchema,
color: String,
intensity: Number
};
export const lightBaseDefaults = extendDefaults([objectManagerDefaults], {
color: "#ffffff",
intensity: 1
}, { intensity: new Range(0, 20) }, { color: true });
//# sourceMappingURL=ILightBase.js.map