UNPKG

@polygonjs/polygonjs

Version:

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

9 lines (8 loc) 490 B
import { Object3D } from 'three'; import { AttribValue } from '../../types/GlobalTypes'; import { ObjectNamedFunction4 } from './_Base'; import { ParamConvertibleJsType } from '../nodes/utils/io/connections/Js'; export declare class setObjectAttribute extends ObjectNamedFunction4<[string, number, AttribValue, ParamConvertibleJsType]> { static type(): string; func(object3D: Object3D, attribName: string, lerp: number, newValue: AttribValue, type: ParamConvertibleJsType): void; }