Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Maya 中制作一个脚本来将渲染层导出到单独的文件中。虽然我不清楚应用于脚本的逻辑。我不想要任何代码只是程序。任何人都可以请帮忙。在此先感谢大家。
你可以得到所有的渲染层
cmds.ls(type='renderLayer')
以及每一层的内容
cmds.editRenderLayerMembers('layer-name-here', q=True)
您必须自己决定如何处理存在于多个层中的对象等等。