Hi im trying to make a prebuild script that will duplicate Sym the arms, legs, etc. this is what I have so far
"
from maya import cmds
from mgear import rigbits
import mgear
import pymel.core as pm
ctls = [‘shoulder_L0_root’, ‘eye_L0_root’, ‘leg_L0_root’]
for ctl in [ctls]:
print(ctls)
cmds.select(ctls)
mgear.rigbits.duplicateSym(clts)
"
but is doesn’t seem to want to duplicate sym all of the controls where it will dup sym the first control
then just dup the rest.
also for some reason when “shoulder_L0_root” is in the front the dup sym doesn’t work properly but if I dup sym it from the shifter then it does
Regards
IDntKnw