首页 > 代码库 > maya api selection

maya api selection

使用maya python api的时候
MSelectionList 需要写成一个单独的函数
如果将MSelectionList内嵌到其他函数的for循环里面的话
即使加了.clear()他也不能自动清空

如下会有问题 sel 不会自动清空:
for i in allsel:
sel = om.MSelectionList()
sel.clear()
sel.add(name)
path = sel.getDagPath(0)

如下例 写成单独函数就没有问题

def vis(name):

sel = om.MSelectionList()
sel.clear()
sel.add(name)
path = sel.getDagPath(0)
print ‘# outpu path %s‘%path
return path.isVisible()

maya api selection