polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
14 lines (13 loc) • 536 B
TypeScript
import { TypedSopNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { CoreGroup } from '../../../core/geometry/Group';
declare class AnimationCopySopParamsConfig extends NodeParamsConfig {
}
export declare class AnimationCopySopNode extends TypedSopNode<AnimationCopySopParamsConfig> {
params_config: AnimationCopySopParamsConfig;
static type(): string;
static displayedInputNames(): string[];
initializeNode(): void;
cook(input_contents: CoreGroup[]): void;
}
export {};