awayjs-display
Version:
AwayJS displaylist classes
23 lines (22 loc) • 529 B
TypeScript
import AssetBase from "awayjs-core/lib/library/AssetBase";
/**
* Provides an abstract base class for nodes in an animation blend tree.
*/
declare class AnimationNodeBase extends AssetBase {
static assetType: string;
_pStateClass: any;
readonly stateClass: any;
/**
* Creates a new <code>AnimationNodeBase</code> object.
*/
constructor();
/**
* @inheritDoc
*/
dispose(): void;
/**
* @inheritDoc
*/
readonly assetType: string;
}
export default AnimationNodeBase;