65 lines
1.3 KiB
Markdown
65 lines
1.3 KiB
Markdown
# Studio Library
|
||
|
||
Studio Library 是一个免费的动画库工具,用于在 Autodesk Maya 中管理姿势和动画。
|
||
|
||
## 版本
|
||
|
||
Studio Library 2.20.2
|
||
|
||
## 官方信息
|
||
|
||
- **官网**: https://www.studiolibrary.com
|
||
- **GitHub**: https://github.com/krathjen/studiolibrary
|
||
- **作者**: Kurt Rathjen
|
||
|
||
## 功能特性
|
||
|
||
- 保存和加载动画姿势
|
||
- 管理动画片段
|
||
- 镜像姿势和动画
|
||
- 选择集管理
|
||
- 自定义缩略图
|
||
- 支持多个库
|
||
- 拖放操作
|
||
- 搜索和过滤
|
||
|
||
## 使用方法
|
||
|
||
### 在 Python 中启动
|
||
|
||
```python
|
||
import sys
|
||
import os
|
||
|
||
studiolibrary_path = r'h:\Workspace\Raw\Tools\Plugins\Maya\2023\scripts\animation_tools\studiolibrary'
|
||
if studiolibrary_path not in sys.path:
|
||
sys.path.insert(0, studiolibrary_path)
|
||
|
||
import studiolibrary
|
||
studiolibrary.main()
|
||
```
|
||
|
||
### 从工具架启动
|
||
|
||
点击动画工具架上的 **StudioLib** 按钮即可启动。
|
||
|
||
## 模块结构
|
||
|
||
此模块包含以下子模块:
|
||
|
||
- **studiolibrary**: 核心库模块
|
||
- **studiolibrarymaya**: Maya 集成模块
|
||
- **mutils**: Maya 工具函数
|
||
- **studioqt**: Qt 界面组件
|
||
- **studiovendor**: 第三方依赖
|
||
|
||
## 注意事项
|
||
|
||
- 首次使用需要设置库路径
|
||
- 支持 Maya 2017 及更高版本
|
||
- 需要 PySide2 或 PySide6(Maya 自带)
|
||
|
||
## 许可证
|
||
|
||
GNU Lesser General Public License v3.0
|