@types/three
Version:
TypeScript definitions for three
16 lines (11 loc) • 405 B
TypeScript
import { SpotLight } from "../../lights/SpotLight.js";
import Node from "../core/Node.js";
import AnalyticLightNode from "./AnalyticLightNode.js";
export default class PointLightNode extends AnalyticLightNode<SpotLight> {
directionNode: Node;
coneCosNode: Node;
penumbraCosNode: Node;
cutoffDistanceNode: Node;
decayExponentNode: Node;
constructor(light?: SpotLight | null);
}