编辑参考文件的属性而不影响其他属性

时间:2016-06-10 00:53:37

标签: python maya

我正在尝试编辑这个特定的相机节点 - 我场景中的胶片之门。 但是,在执行此操作时,我收到了以下错误The attribute 'main_camera01:main_cameraShape.horizontalFilmAperture' is locked or connected and cannot be modifiedThe attribute 'main_camera01:main_cameraShape.verticalFilmAperture' is locked or connected and cannot be modified

这两个特定属性以黄色突出显示,带有一些连接,相机来自参考文件。

我试过像cmds.setAttr('camera01:cameraShape.horizontalFilmAperture', lock=0)这样的东西来解锁属性,但是我得到了同样的错误。无论如何我可以在不影响其他属性连接的情况下调整这个Film Gate属性吗?

1 个答案:

答案 0 :(得分:0)

黄色表示您有连接,这意味着带锁的setAttr将无法在那里工作。您需要使用disconnectAttr。 cmds.setAttr('your_source_object.attribute','camera01:cameraShape.horizo​​ntalFilmAperture')。但在这种情况下,我认真地认为你有一个参考。在那种情况下,故事会有所不同。