@awayjs/graphics
Version:
AwayJS graphics classes
12 lines (10 loc) • 343 B
text/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;
}