UNPKG

@polygonjs/polygonjs

Version:

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

14 lines (13 loc) 556 B
import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { CoreGroup } from '../../../core/geometry/Group'; import { SopType } from '../../poly/registers/nodes/types/Sop'; declare class AnimationCopySopParamsConfig extends NodeParamsConfig { } export declare class AnimationCopySopNode extends TypedSopNode<AnimationCopySopParamsConfig> { paramsConfig: AnimationCopySopParamsConfig; static type(): SopType; initializeNode(): void; cook(input_contents: CoreGroup[]): void; } export {};