UNPKG

@polygonjs/polygonjs

Version:

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

19 lines (18 loc) 698 B
/** * gets globals properties of an hemisphere 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 GlobalsHemisphereLightJsParamsConfig extends NodeParamsConfig { } export declare class GlobalsHemisphereLightJsNode extends TypedJsNode<GlobalsHemisphereLightJsParamsConfig> { paramsConfig: GlobalsHemisphereLightJsParamsConfig; static type(): JsType; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};