Removing Deformers from envelope, multiple connection sets in one go?

2014-10-29 Thread Eric Thivierge
Is it possible to send multiple connection sets to remove deformers from multiple meshes at the same time if the meshes have different deformer lists that you want to remove? Normally: si.RemoveFlexEnvDeformer(myModel.body_M_geo;myModel.weapon1_L_def,myModel.weapon2_L_def) Where this is the

Re: Removing Deformers from envelope, multiple connection sets in one go?

2014-10-29 Thread Alan Fregtman
You can do: si.RemoveFlexEnvDeformer(myModel.body_M_geo,myModel.teeth_M_geo;myModel. weapon1_L_def,myModel.weapon2_L_def,myModel.arm_L_def, myModel.leg_L_def) This way you're removing the chosen deformers from all of the chosen source meshes. If you want to be more specific than that I reckon

Re: Removing Deformers from envelope, multiple connection sets in one go?

2014-10-29 Thread Eric Thivierge
Yeah looks like multiple commands. On Wednesday, October 29, 2014 12:05:11 PM, Alan Fregtman wrote: You can do: si.RemoveFlexEnvDeformer(__myModel.body_M_geo,myModel.teeth_M_geo;myModel.__weapon1_L_def,myModel.weapon2___L_def,myModel.__arm_L_def, myModel.leg_L_def) This way you're removing the