Maya Python:在曲线 CV 上制作簇

Maya Python: Making clusters on curve CVs

我发现所有的 CV 都在一条曲线上,我想在每个 CV 上做一个集群。但是我收到一个不是很有帮助的错误。这是代码:

# Find all the CVs on the curve, loop through and create a cluster on each
curveCVs = cmds.ls(targetCurve + ".cv[0:]",fl=True)
for i, cv in enumerate(curveCVs):
print i, cv

cmds.cluster(wn=(cv, cv))

错误出在 cmds.cluster 中 wn 标志的参数上。

# Error: RuntimeError: file <maya console> line 211: Invalid transforms specified.

文档说参数应该是字符串。例如。 wn=("thing1", "thing2")

但即使我尝试手动输入 CV 字符串,它也不起作用。

cmds.cluster(wn=("targetPath.cv[14]", "targetPath.cv[14]"))

还有其他方法吗?

你差不多明白了。下面是如何使用 cmds.cluster:

import maya.cmds as cmds

targetCurve = 'curve1' # Curve to put clusters on
curveCVs = cmds.ls('{0}.cv[:]'.format(targetCurve), fl = True) # Get all cvs from curve
if curveCVs: # Check if we found any cvs
    for cv in curveCVs:
        print 'Creating {0}'.format(cv)
        cmds.cluster(cv) # Create cluster on a cv
else:
    cmds.warning('Found no cvs!')