27 lines
516 B
Python
27 lines
516 B
Python
#!/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'
|