mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
10 lines (9 loc) • 383 B
TypeScript
import ILightBase from "./ILightBase";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
export default interface IPointLight extends ILightBase {
decay: number;
distance: number;
}
export declare const pointLightSchema: Required<ExtractProps<IPointLight>>;
export declare const pointLightDefaults: Defaults<IPointLight>;