UNPKG

@types/three

Version:
16 lines (11 loc) 405 B
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); }