maya python 获取场景中的空间名
时间: 2023-11-28 11:49:39 浏览: 76
MayaPython简易教程.doc
你可以使用 Maya Python 中的 `ls` 函数来获取场景中的所有空间名。以下是一个示例代码:
```python
import maya.cmds as cmds
transforms = cmds.ls(type='transform')
for transform in transforms:
print(transform)
```
这将打印出场景中所有的空间名。如果你只想获取特定类型的空间名,可以在 `ls` 函数中指定 `type` 参数。
阅读全文