This commit is contained in:
2025-11-25 00:17:12 +08:00
parent 74ddbc7ffb
commit 61112bde7f
3 changed files with 341 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Studio Library 简单启动脚本
用于工具架按钮,不需要绝对路径
"""
def launch():
"""启动 Studio Library"""
try:
import animation_tools.studiolibrary as studiolib
studiolib.show()
except ImportError as e:
print("Failed to import Studio Library: " + str(e))
print("Please make sure animation_tools is in your PYTHONPATH")
if __name__ == "__main__":
launch()