@awayjs/graphics
Version:
AwayJS graphics classes
11 lines (9 loc) • 294 B
text/typescript
import { AnimationNodeBase } from '@awayjs/renderer';
import { AnimatorBase } from '../AnimatorBase';
/**
*
*/
export interface IAnimationTransition
{
getAnimationNode(animator: AnimatorBase, startNode: AnimationNodeBase, endNode: AnimationNodeBase, startTime: number): AnimationNodeBase
}