Hey all,
I've noticed this sort of thing sometimes when using pymel. If I run something like: curSel = pm.selected()[0] with a joint selected it will normal return:
// Result: nt.Joint(u'Hand_L_Result_JNT) //
That result is expected, but then other times it returns the entire hierarchy like this:
// Result: nt.Joint(u'Arm_L_Upper_Result_JNT|Arm_L_UpperRoll_Result_JNT|Arm_L_Lower_Result_JNT|Arm_L_LowerRoll_Result_JNT|Hand_L_Result_JNT') //
It seems to happen randomly and I haven't figured out how to get rid of it. Does anyone know what causes this, and how to prevent it?
Thanks!