I'm trying to automate the foot rig process in maya using python. When I try to group the ikHandles using this line of code, ankle_grp=cmds.group( ankle_ik, ball_ik,n='ankle_grp')
, the effectors of the ikHandles are also coming into the ankle_grp. I do not want that. I want the ankle_grp to have only the ik Handles and not it's effectors. How do i do that?
Thanks in advance.
It worked when I gave the name of the ik_handle instead of a custom defined variable for ik_handle.
ankle_grp=cmds.group( 'ankle_ik', 'ball_ik',n='ankle_grp')