Python - 列表中的对象与另一个列表中的对象位置相匹配
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设这些盒子共享同一个父对象,或者没有父对象,这将起作用。如果没有,您将不得不使用更复杂的对齐函数或父约束将小框限制为大框,然后删除父约束。
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.