UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

19 lines (18 loc) 688 B
/** * sets globals properties of the current ambient light * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; import { JsType } from '../../poly/registers/nodes/types/Js'; declare class OutputAmbientLightJsParamsConfig extends NodeParamsConfig { } export declare class OutputAmbientLightJsNode extends TypedJsNode<OutputAmbientLightJsParamsConfig> { paramsConfig: OutputAmbientLightJsParamsConfig; static type(): JsType; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};