LoginSignup
0
0

More than 1 year has passed since last update.

maya python select curves for lighting

Posted at
import maya.cmds as cmds
curve_transforms = [cmds.listRelatives(i, p=1, type='transform')[0] for i
in cmds.ls(type='nurbsCurve', o=1, r=1, ni=1)]
selectList = []
for c in curve_transforms:
    if "FKNeck_M" in c:
        selectList.append(c)
        selectList.append(c[0:-8]+"FKRoot_M")
return selectList
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0