UNPKG

polygonjs-engine

Version:

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

18 lines (17 loc) 580 B
/** * Allows to set the result of the shader * * */ import { TypedGlNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { ShadersCollectionController } from './code/utils/ShadersCollectionController'; declare class OutputGlParamsConfig extends NodeParamsConfig { } export declare class OutputGlNode extends TypedGlNode<OutputGlParamsConfig> { params_config: OutputGlParamsConfig; static type(): string; initializeNode(): void; set_lines(shaders_collection_controller: ShadersCollectionController): void; } export {};