Re: Know the ID of an Object in an Envelope and Group? Copy Weights? Partial Gator?

2015-02-05 Thread Matt Lind
A) Internally, Softimage stores IDs by order of creation. This has nothing to do with the setting in the explorer/schematic views. Any setting to view the data in another order (alphabetical, size, etc..) is separate and done purely for visual feedback purposes. B) The provided script

Re: Know the ID of an Object in an Envelope and Group? Copy Weights? Partial Gator?

2015-02-05 Thread pedro santos
@Eric Thivierge A) Thanks, I was wondering if there was something more integrated but the script below certainly helps. si = Application sel = si.Selection for i in xrange(len(sel[0].Envelopes(0).Deformers)): print i, sel[0].Envelopes(0).Deformers[i] B) Thanks, GEAR indeed has a lot of little

Know the ID of an Object in an Envelope and Group? Copy Weights? Partial Gator?

2015-01-27 Thread pedro santos
A - Something that always bugged me is that I don't know a way to inspect the Order ID of and object in a Group or in an Envelope. So say I have Null_H Which in the deformers or group list shows up in 8th position (ID7) because it comes after Null_A, Null_B, etc. But that doesn't mean that when

Re: Know the ID of an Object in an Envelope and Group? Copy Weights? Partial Gator?

2015-01-27 Thread Eric Thivierge
A) mesh.Envelopes(0).Deformers should give you the object collection in the proper order. You can recreate the group by using the Envelope Select Deformers and once selected, create a group. B) You'll have to write a script for that. Check the GEAR tools I think there might be a tool in there