mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
16 lines • 386 B
JavaScript
import { lightBaseDefaults, lightBaseSchema } from "./ILightBase";
export const spotLightSchema = {
...lightBaseSchema,
angle: Number,
penumbra: Number,
decay: Number,
distance: Number
};
export const spotLightDefaults = {
...lightBaseDefaults,
angle: 1,
penumbra: 0,
decay: 1,
distance: 0
};
//# sourceMappingURL=ISpotLight.js.map