26 lines
563 B
Python
26 lines
563 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
版权所有: 深圳时光科技有限公司
|
|
联系方式: q.100@qq.com
|
|
创建日期: 2023/08/08
|
|
"""
|
|
|
|
import os
|
|
import imp
|
|
import maya.cmds as cmds
|
|
|
|
def sg_motion_apply():
|
|
"""
|
|
导入动作应用模块
|
|
"""
|
|
path = os.getenv('SG_PATH')
|
|
meta_motion_path = os.path.join(path, 'files/meta_motion_apply/meta_motion_apply.py')
|
|
|
|
# 使用imp模块导入动作应用脚本
|
|
imp.load_source('', meta_motion_path)
|
|
|
|
# 如果直接运行此脚本
|
|
if __name__ == '__main__':
|
|
sg_motion_apply() |