mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
17 lines (13 loc) • 461 B
text/typescript
import ILightBase, { lightBaseDefaults, lightBaseSchema } from "./ILightBase"
import Defaults from "./utils/Defaults"
import { ExtractProps } from "./utils/extractProps"
export default interface IAreaLight extends ILightBase {}
export const areaLightSchema: Required<ExtractProps<IAreaLight>> = {
...lightBaseSchema
}
export const areaLightDefaults: Defaults<IAreaLight> = {
...lightBaseDefaults,
depth: 0,
scaleZ: 0,
castShadow: false
}