Update
This commit is contained in:
26
2024/scripts/rigging_tools/skin_api/__init__.py
Normal file
26
2024/scripts/rigging_tools/skin_api/__init__.py
Normal 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'
|
||||
Reference in New Issue
Block a user