@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
19 lines (18 loc) • 915 B
TypeScript
/**
* sets the position of a cloth constraint
*
*
*/
import { BaseTriggerAndObjectJsNode } from './_BaseTriggerAndObject';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class SetClothConstraintPositionJsParamsConfig extends NodeParamsConfig {
position: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
lerp: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
}
export declare class SetClothConstraintPositionJsNode extends BaseTriggerAndObjectJsNode<SetClothConstraintPositionJsParamsConfig> {
readonly paramsConfig: SetClothConstraintPositionJsParamsConfig;
static type(): string;
setTriggerableLines(shadersCollectionController: JsLinesCollectionController): void;
}
export {};