@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
9 lines (8 loc) • 471 B
TypeScript
import { Object3D } from 'three';
import { ObjectNamedFunction3 } from './_Base';
import { ParamConvertibleJsType } from '../nodes/utils/io/connections/Js';
import { AttribValue } from '../../types/GlobalTypes';
export declare class getChildrenAttributes extends ObjectNamedFunction3<[string, string, Array<AttribValue>]> {
static type(): string;
func(object3D: Object3D, attribName: string, type: ParamConvertibleJsType, values: AttribValue[]): AttribValue[];
}