mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-17 15:46:26 +00:00
24 lines
800 B
Python
24 lines
800 B
Python
"""!
|
|||
|
|
Package with all the Lottie Python bindings
|
||
|
|
"""
|
||
|
|
from . import (
|
||
|
|
animation, base, effects, enums, helpers, layers, shapes, assets, easing,
|
||
|
|
text, bezier, composition
|
||
|
|
)
|
||
|
|
from .animation import Animation
|
||
|
|
from .layers import *
|
||
|
|
from .shapes import *
|
||
|
|
from .assets import Precomp
|
||
|
|
from .bezier import Bezier
|
||
|
|
from .composition import Composition
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"animation", "base", "effects", "enums", "helpers", "layers", "shapes", "assets",
|
||
|
|
"easing", "text", "bezier",
|
||
|
|
"Animation",
|
||
|
|
"NullLayer", "TextLayer", "ShapeLayer", "ImageLayer", "PreCompLayer", "SolidColorLayer",
|
||
|
|
"Rect", "Fill", "Trim", "Repeater", "GradientFill", "Stroke", "RoundedCorners", "Path",
|
||
|
|
"TransformShape", "Group", "Star", "Ellipse", "Merge", "GradientStroke",
|
||
|
|
"Bezier", "Precomp", "Composition",
|
||
|
|
]
|