lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
10 lines (9 loc) • 410 B
TypeScript
import ILightBase from "./ILightBase";
import { ExtractProps } from "./utils/extractProps";
export default interface IPointLightBase extends ILightBase {
distance: number;
shadows: boolean;
fade: boolean;
}
export declare const pointLightBaseSchema: Required<ExtractProps<IPointLightBase>>;
export declare const pointLightBaseDefaults: Partial<import("./utils/Defaults").default<IPointLightBase>>;