@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
20 lines (19 loc) • 731 B
TypeScript
/**
* Sets the children
*
*/
import { TypedSopNode } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class SetChildrenSopParamsConfig extends NodeParamsConfig {
clearExistingChildren: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
}
export declare class SetChildrenSopNode extends TypedSopNode<SetChildrenSopParamsConfig> {
paramsConfig: SetChildrenSopParamsConfig;
static type(): SopType;
initializeNode(): void;
private _operation;
cook(inputCoreGroups: CoreGroup[]): void;
}
export {};