@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
20 lines (19 loc) • 717 B
TypeScript
/**
* Name of the property the animation will be applied to
*
*
*/
import { TypedAnimNode } from './_Base';
import { TimelineBuilder } from '../../../core/animation/TimelineBuilder';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class PropertyNameAnimParamsConfig extends NodeParamsConfig {
/** @param name */
name: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.STRING>;
}
export declare class PropertyNameAnimNode extends TypedAnimNode<PropertyNameAnimParamsConfig> {
paramsConfig: PropertyNameAnimParamsConfig;
static type(): string;
initializeNode(): void;
cook(inputContents: TimelineBuilder[]): void;
}
export {};