UNPKG

@polygonjs/polygonjs

Version:

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

21 lines (20 loc) 727 B
/** * Sets which node is used as the output of a parent subnet node. * * @remarks * Can only be created inside a subnet SOP. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { NetworkChildNodeType } from '../../poly/NodeContext'; declare class SopSubnetOutputSopParamsConfig extends NodeParamsConfig { } export declare class SubnetOutputSopNode extends TypedSopNode<SopSubnetOutputSopParamsConfig> { paramsConfig: SopSubnetOutputSopParamsConfig; static type(): Readonly<NetworkChildNodeType.OUTPUT>; initializeNode(): void; cook(inputCoreGroups: CoreGroup[]): void; } export {};