UNPKG

@polygonjs/polygonjs

Version:

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

11 lines (10 loc) 437 B
import { AttribValue } from '../../../types/GlobalTypes'; import { CoreGraphNode } from '../../../core/graph/CoreGraphNode'; import { PolyScene } from '../../scene/PolyScene'; export declare class BaseCopyStamp extends CoreGraphNode { protected _globalIndex: number | undefined; constructor(scene: PolyScene); reset(): void; setGlobalIndex(index: number): void; value(attribName?: string): AttribValue | undefined; }