使用Python在maya中选择具有特定前缀的对象

时间:2018-05-08 11:51:40

标签: maya

我想选择具有特定前缀的al对象。

outliner的截图:

enter image description here

我找到的唯一方法是选择所有灯光,但我只希望将带有此前缀的灯光添加到我的数组中。

我现在拥有的: selectionLights = cmds.ls(type = ['aiAreaLight']) lights.extend(selectionLights)

如果有人可以帮助我,那就太棒了!

1 个答案:

答案 0 :(得分:2)

由于python命令的工作方式与mel命令类似,因此它的工作原理如下:

cmds.ls("PainterLight*")