This commit is contained in:
2025-12-05 08:08:44 +08:00
parent e0d4d0c364
commit 1f10abfb32
2909 changed files with 2470486 additions and 3024 deletions

View File

@@ -0,0 +1,26 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Site : Virtuos Games
# @Author : ZHou Shuhua
"""
Skin API Module
Provides skin weight export, import, and management functions
Supports all Maya versions with compatibility for both pymel and cmds
"""
# Export main UI functions
from .ui import WeightExport, WeightImport, UnbindSkin
# Export core classes
from .apiVtxAttribs import ApiVtxAttribs
__all__ = [
'WeightExport',
'WeightImport',
'UnbindSkin',
'ApiVtxAttribs'
]
__version__ = '1.0.0'