UNPKG

@visactor/vrender-animate

Version:

This module provides a graph-based animation system for VRender.

30 lines (29 loc) 1.71 kB
export { Animate } from './animate'; export { DefaultTimeline, defaultTimeline } from './timeline'; export { ManualTicker } from './ticker/manual-ticker'; export { DefaultTicker } from './ticker/default-ticker'; export { Step as AnimateStep } from './step'; import { DefaultTicker } from './ticker/default-ticker'; export declare const defaultTicker: DefaultTicker; export * from './utils/easing-func'; export * from './utils/easing'; export { registerAnimate } from './register'; export { ACustomAnimate, AComponentAnimate, AStageAnimate } from './custom/custom-animate'; export { ComponentAnimator } from './component/component-animator'; export { IncreaseCount } from './custom/number'; export { MorphingPath, MultiToOneMorphingPath, oneToMultiMorph, multiToOneMorph, morphPath } from './custom/morphing'; export { InputText } from './custom/input-text'; export { ClipGraphicAnimate, ClipAngleAnimate, ClipRadiusAnimate, ClipDirectionAnimate } from './custom/clip-graphic'; export { TagPointsUpdate } from './custom/tag-points'; export { GroupFadeIn, GroupFadeOut } from './custom/groupFade'; export { RotateBySphereAnimate } from './custom/sphere'; export { AnimateExecutor } from './executor/animate-executor'; export type { IAnimationConfig } from './executor/executor'; export * from './custom/register'; export { registerCustomAnimate } from './custom/register'; export * from './state'; export { AnimationTransitionRegistry } from './state/animation-states-registry'; export { transitionRegistry } from './state/animation-states-registry'; export { AnimationStateManager } from './state/animation-state'; export { AnimationStateStore } from './state/animation-state'; export * from './component';