Python - 列表中的对象与另一个列表中的对象位置相匹配

发布于 2025-01-11 09:44:53 字数 208 浏览 0 评论 0原文

我正在尝试使用 python 来匹配 Maya 场景中不同列表中具有相似名称的对象的位置。

即在我的场景中有 100 个大盒子(“Box_01_obj”,“Box_02_obj”...)和 100 个小盒子(“Box_01_obj_small”,“Box_02_obj_small”...),我试图使这些小盒子匹配大箱子的位置。

我怎样才能使用 python 来做到这一点?

I'm trying to match positions of objects with similar names from different lists in my maya scene using python.

i.e In my scene there are 100's of big boxes ("Box_01_obj","Box_02_obj"...) and 100's of small boxes ("Box_01_obj_small", "Box_02_obj_small"...) and I'm trying to make those small boxes match big boxes location.

How could I do this using python?

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

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

发布评论

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

评论(1

友欢 2025-01-18 09:44:53
import maya.cmds as mc

for SmallBox in mc.ls("*_small"):
    BigBox = SmallBox.replace("_small","")
    if mc.objExists(BigBox):
        BigBoxPositionX = mc.getAttr(BigBox+".tx")
        mc.setAttr(SmallBox+".tx", BigBoxPositionX)
        
        BigBoxPositionY = mc.getAttr(BigBox+".ty")
        mc.setAttr(SmallBox+".ty", BigBoxPositionY)
        
        BigBoxPositionZ = mc.getAttr(BigBox+".tz")
        mc.setAttr(SmallBox+".tz", BigBoxPositionZ)

假设这些盒子共享同一个父对象,或者没有父对象,这将起作用。如果没有,您将不得不使用更复杂的对齐函数或父约束将小框限制为大框,然后删除父约束。

import maya.cmds as mc

for SmallBox in mc.ls("*_small"):
    BigBox = SmallBox.replace("_small","")
    if mc.objExists(BigBox):
        BigBoxPositionX = mc.getAttr(BigBox+".tx")
        mc.setAttr(SmallBox+".tx", BigBoxPositionX)
        
        BigBoxPositionY = mc.getAttr(BigBox+".ty")
        mc.setAttr(SmallBox+".ty", BigBoxPositionY)
        
        BigBoxPositionZ = mc.getAttr(BigBox+".tz")
        mc.setAttr(SmallBox+".tz", BigBoxPositionZ)

This will work, assuming that the boxes share the same parent, or are unparented. If not, you'll have to use a more complex align function or parent constrain the small boxes to the big ones and then remove the parent constraint.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文