Re: merge parent and children through scripting?

2015-02-10 Thread Martin Yara
It isn't a short script so I won't be able to write everything again for you. I would do it using an addon I wrote, so If you download and install my addon, you can use the code below: addon: http://skymill.co.jp/tools/Softimage/mCombine/mCombine.xsiaddon video to see what it does:

Re: merge parent and children through scripting?

2015-02-10 Thread Matt Lind
Try this. 1) paste script into script editor (JScript) 2) Select parent polygon meshes 3) run script main(); function main() { var oObjects = SIFilter( null, siPolyMeshFilter, true, siQuickSearch ); for ( var i = 0; i oObjects.Count; i++ ) { var oObject = oObjects(i);

RE: merge parent and children through scripting?

2015-02-10 Thread Jeff McFall
: Tuesday, February 10, 2015 3:26 AM To: softimage@listproc.autodesk.com Subject: Re: merge parent and children through scripting? It isn't a short script so I won't be able to write everything again for you. I would do it using an addon I wrote, so If you download and install my addon, you can

RE: merge parent and children through scripting?

2015-02-10 Thread Matt Lind
: Jeff McFall jeff.mcf...@sas.com Subject: RE: merge parent and children through scripting? To: softimage@listproc.autodesk.com Awesome! - thanks so much, Matt This worked like a charm. Somehow each of the objects came out half size, (maybe I had some odd scaling in the hierarchy

RE: merge parent and children through scripting?

2015-02-10 Thread Jeff McFall
received from everyone here. Jeff From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Matt Lind Sent: Tuesday, February 10, 2015 4:27 AM To: softimage@listproc.autodesk.com Subject: Re: merge parent and children through scripting? Try this. 1