lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 568 B
TypeScript
import { PointLight as ThreePointLight } from "three";
import IPointLight from "../../interface/IPointLight";
import PointLightBase from "../core/PointLightBase";
export default class PointLight extends PointLightBase<ThreePointLight> implements IPointLight {
static componentName: string;
static defaults: Partial<import("../../interface/utils/Defaults").default<IPointLight>>;
static schema: Required<import("../../interface/utils/extractProps").ExtractProps<IPointLight>>;
constructor();
get shadows(): boolean;
set shadows(val: boolean);
}