mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 421 B
TypeScript
import ILightBase from "./ILightBase";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
export default interface ISpotLight extends ILightBase {
angle: number;
penumbra: number;
decay: number;
distance: number;
}
export declare const spotLightSchema: Required<ExtractProps<ISpotLight>>;
export declare const spotLightDefaults: Defaults<ISpotLight>;