@awayjs/graphics
Version:
AwayJS graphics classes
10 lines • 407 B
TypeScript
import { IAnimationState } from './IAnimationState';
import { Skeleton } from '../data/Skeleton';
import { SkeletonPose } from '../data/SkeletonPose';
export interface ISkeletonAnimationState extends IAnimationState {
/**
* Returns the output skeleton pose of the animation node.
*/
getSkeletonPose(skeleton: Skeleton): SkeletonPose;
}
//# sourceMappingURL=ISkeletonAnimationState.d.ts.map