31 lines
768 B
Python
31 lines
768 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#===================================== 1. Module Imports =====================================
|
|
import maya.cmds as cmds
|
|
import maya.mel as mel
|
|
import sys
|
|
import os
|
|
|
|
#===================================== 2. Rigging Utils =====================================
|
|
def export_settings():
|
|
"""导出设置"""
|
|
print("导出设置功能待实现")
|
|
|
|
def import_settings():
|
|
"""导入设置"""
|
|
print("导入设置功能待实现")
|
|
|
|
def clear_options():
|
|
"""清空选项"""
|
|
print("清空选项功能待实现")
|
|
|
|
def import_skeleton():
|
|
"""导入骨架"""
|
|
print("导入骨架功能待实现")
|
|
|
|
def create_skeleton():
|
|
"""创建骨架"""
|
|
print("创建骨架功能待实现")
|
|
|
|
# 其他功能函数... |