UNPKG

@polygonjs/polygonjs

Version:

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

29 lines (28 loc) 1.53 kB
/** * Update the object scale * * */ import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsConnectionPoint, JsConnectionPointType } from '../utils/io/connections/Js'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; import { BaseTriggerAndObjectJsNode } from './_BaseTriggerAndObject'; import { JsType } from '../../poly/registers/nodes/types/Js'; declare class SetObjectScaleJsParamsConfig extends NodeParamsConfig { /** @param target scale */ scale: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>; /** @param target scale */ mult: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; /** @param lerp factor */ lerp: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>; /** @param sets if the matrix should be updated as the animation progresses */ updateMatrix: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>; } export declare class SetObjectScaleJsNode extends BaseTriggerAndObjectJsNode<SetObjectScaleJsParamsConfig> { readonly paramsConfig: SetObjectScaleJsParamsConfig; static type(): JsType; protected _additionalOutputs(): JsConnectionPoint<JsConnectionPointType>[]; setLines(linesController: JsLinesCollectionController): void; setTriggerableLines(linesController: JsLinesCollectionController): void; } export {};