@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
7 lines (6 loc) • 326 B
TypeScript
import { Object3D, Vector3 } from 'three';
import { ObjectNamedFunction4 } from './_Base';
export declare class setObjectScale extends ObjectNamedFunction4<[Vector3, number, number, boolean]> {
static type(): string;
func(object3D: Object3D, scale: Vector3, mult: number, lerp: number, updateMatrix: boolean): void;
}