@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
16 lines (15 loc) • 522 B
TypeScript
/**
* A subnet to create SOP nodes
*
*/
import { SubnetSopNodeLike } from './utils/subnet/SopSubnetChildrenDisplayController';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { NetworkNodeType } from '../../poly/NodeContext';
declare class SubnetSopParamsConfig extends NodeParamsConfig {
}
export declare class SubnetSopNode extends SubnetSopNodeLike<SubnetSopParamsConfig> {
paramsConfig: SubnetSopParamsConfig;
static type(): NetworkNodeType;
initializeNode(): void;
}
export {};