UNPKG

@visactor/vrender-animate

Version:

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

60 lines (31 loc) 1.79 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"; import { defaultTimeline } from "./timeline"; export const defaultTicker = new DefaultTicker; defaultTicker.addTimeline(defaultTimeline); 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 * 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"; //# sourceMappingURL=index.js.map