This commit is contained in:
2025-11-24 21:05:22 +08:00
parent e76152945e
commit e4c713035b
12 changed files with 585 additions and 414 deletions

View File

@@ -0,0 +1,23 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Skin API Module
提供蒙皮权重导出、导入和管理功能
支持 Maya 所有版本,兼容 pymel 和 cmds
"""
# 导出主要的 UI 函数
from .ui import WeightExport, WeightImport, UnbindSkin
# 导出核心类
from .apiVtxAttribs import ApiVtxAttribs
__all__ = [
'WeightExport',
'WeightImport',
'UnbindSkin',
'ApiVtxAttribs'
]
__version__ = '1.0.0'