通过相机/图像平面的脚本更改属性

发布于 2025-01-12 16:25:26 字数 479 浏览 0 评论 0原文

好的,目前我有这个

string $cam[] = `ls -sl`;
string $camR[] = listRelatives($cam[0]);
string $camC[] = listConnections($camR[0]);

if (getAttr($camC[0]+".depth" == 2)){
    setAttr $camC[0]+".depth" = 10000;
    setAttr $camC[0]+".alpha" = 0.5;
    setAttr $camR[0]+".nearClipPlane" = 1;
};

,应该可以让您大致了解我正在尝试做什么。 它需要是动态的,以便它可以与任何相机、任何名称以及附加到该相机的多个连接/关系一起使用。基本上,如果它是附加了 imagePlane 的相机,则此脚本必须编辑所有属性。

有什么建议吗?

注意:使用maya2020,因此某些功能可能与2022不同。

ok so currently i have this

string $cam[] = `ls -sl`;
string $camR[] = listRelatives($cam[0]);
string $camC[] = listConnections($camR[0]);

if (getAttr($camC[0]+".depth" == 2)){
    setAttr $camC[0]+".depth" = 10000;
    setAttr $camC[0]+".alpha" = 0.5;
    setAttr $camR[0]+".nearClipPlane" = 1;
};

which should give you a rough idea of what im trying to do.
it needs to be dynamic so it works with any camera, any name and multiple connections/relations attached to that camera. Basically, if it's a camera that has an imagePlane attached, this script must edit all attributes.

Any suggestions?

Note: using maya2020 so some functions might be different from 2022.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤芳又自赏 2025-01-19 16:25:26

在 mel 中分配属性的工作方式略有不同。
这应该有效:

string $cameras[] = `ls -sl`;
string $shapes[] = `listRelatives -s $cameras[0]`;

for( $shape in $shapes)
{
    string $imagePlaneShapes[] = `listConnections -sh 1 $shape`;
    if(`getAttr ($imagePlaneShapes[0] + ".depth")` == 2)
    {     
        setAttr ($imagePlaneShapes[0]+".depth") 10000;
        ...
    }
}

Assigning attributes work a little bit differently in mel.
This should work:

string $cameras[] = `ls -sl`;
string $shapes[] = `listRelatives -s $cameras[0]`;

for( $shape in $shapes)
{
    string $imagePlaneShapes[] = `listConnections -sh 1 $shape`;
    if(`getAttr ($imagePlaneShapes[0] + ".depth")` == 2)
    {     
        setAttr ($imagePlaneShapes[0]+".depth") 10000;
        ...
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文