mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-16 23:26:26 +00:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
"""!
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user