lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
13 lines (12 loc) • 877 B
TypeScript
import { Mesh } from "three";
import SpotLight from "../display/lights/SpotLight";
export declare const volumetricSpotLightSystem: {
add: ((item: Mesh<import("three").BufferGeometry, import("three").Material | import("three").Material[]>, initData?: {
light: SpotLight;
material: any;
} | undefined) => false | import("@lincode/promiselikes").Cancellable) | ((item: Mesh<import("three").BufferGeometry, import("three").Material | import("three").Material[]>, initData?: {
light: SpotLight;
material: any;
} | undefined) => boolean);
delete: ((item: Mesh<import("three").BufferGeometry, import("three").Material | import("three").Material[]>) => false | import("@lincode/promiselikes").Cancellable | undefined) | ((item: Mesh<import("three").BufferGeometry, import("three").Material | import("three").Material[]>) => boolean);
};