-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimate.py
More file actions
26 lines (20 loc) · 711 Bytes
/
animate.py
File metadata and controls
26 lines (20 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python3
"""
Desktop Animation Tool - Run Script
Execute this file to run the animation tool.
Usage:
python3 run_animation.py [options]
Examples:
python3 run_animation.py -c -e flip # Flip effect with desktop capture
python3 run_animation.py -c -e ripple # Ripple effect
python3 run_animation.py -c -e eyes # Eye animation
python3 run_animation.py -c -e hidden # Remove objects
python3 run_animation.py -c -e clone # Clone/replace regions
"""
import sys
import os
# Add the package directory to path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from main import main
if __name__ == "__main__":
main()