python Maya Python回调

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Maya Python回调相关的知识,希望对你有一定的参考价值。

class Callback(object): 
	def __init__(self, func, *args, **kwargs): 
		self.func = func 
		self.args = args 
		self.kwargs = kwargs
	def __call__(self, *args): 
		return self.func( *self.args, **self.kwargs ) 

and this to call it 
mc.menuItem(l='Remove set from scene', c=Callback(self.stripObject, obj, member, 1, selButton)) 

以上是关于python Maya Python回调的主要内容,如果未能解决你的问题,请参考以下文章

python [Maya Python]添加vectorArray属性

python 使用Python的Autodesk Maya热键

Maya:如何使用 python 导入 fbx?

怎么用python完成maya里的渲染设置

python Maya中的自定义标记菜单示例,以Python编写。

Maya python FBX导出?