UNPKG

@visactor/vrender-animate

Version:

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

12 lines (8 loc) 370 B
import { Graphic } from "@visactor/vrender-core"; import { mixin } from "@visactor/vutils"; import { GraphicStateExtension } from "./state/graphic-extension"; import { AnimateExtension } from "./animate-extension"; export function registerAnimate() { mixin(Graphic, GraphicStateExtension), mixin(Graphic, AnimateExtension); } //# sourceMappingURL=register.js.map