mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
14 lines (13 loc) • 531 B
TypeScript
import IObjectManager from "./IObjectManager";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
export default interface ILightBase extends IObjectManager {
color: string;
intensity: number;
shadowResolution: Nullable<number>;
shadowBias: Nullable<number>;
helper: boolean;
}
export declare const lightBaseSchema: Required<ExtractProps<ILightBase>>;
export declare const lightBaseDefaults: Defaults<ILightBase>;