UNPKG

@polygonjs/polygonjs

Version:

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

27 lines (26 loc) 1.43 kB
/** * SSS Model * * * */ import { TypedGlNode } from './_Base'; import { NodeParamsConfig } from '../../nodes/utils/params/ParamsConfig'; import { ShadersCollectionController } from './code/utils/ShadersCollectionController'; declare class VATDataGlParamsConfig extends NodeParamsConfig { color: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.COLOR>; thickness: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; power: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; scale: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; distortion: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; ambient: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; attenuation: import("../../nodes/utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; } export declare class SSSModelGlNode extends TypedGlNode<VATDataGlParamsConfig> { paramsConfig: VATDataGlParamsConfig; static type(): string; initializeNode(): void; setLines(shaders_collection_controller: ShadersCollectionController): void; private _paramLineFloat; } export {};