UNPKG

@polygonjs/polygonjs

Version:

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

18 lines (17 loc) 760 B
/** * Creates a cloth constraint * * */ import { BaseTriggerAndObjectJsNode } from './_BaseTriggerAndObject'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class CreateClothConstraintJsParamsConfig extends NodeParamsConfig { index: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; } export declare class CreateClothConstraintJsNode extends BaseTriggerAndObjectJsNode<CreateClothConstraintJsParamsConfig> { readonly paramsConfig: CreateClothConstraintJsParamsConfig; static type(): string; setTriggerableLines(linesController: JsLinesCollectionController): void; } export {};