@types/three
Version:
TypeScript definitions for three
13 lines (8 loc) • 375 B
TypeScript
import { InstancedMesh, ShaderMaterial, SphereGeometry } from "three";
import { LightProbeGrid } from "../lighting/LightProbeGrid.js";
declare class LightProbeGridHelper extends InstancedMesh<SphereGeometry, ShaderMaterial> {
probes: LightProbeGrid;
constructor(probes: LightProbeGrid, sphereSize?: number);
update(): void;
}
export { LightProbeGridHelper };