Hi Okt, here is a function doing the job. Works with Editable Poly and Mesh. Gets an object and an array of Point3 and clones the source to specified positions, then attaches them to the source. You may want to look to this thread discussing how to speed up attachment of a large number of objects. function cloneNodesToPos…
Wow guys thanks, the maxOps.CloneNodes function was what I was looking for. @SyncViewS, thanks for the function, unfortunately for what I'm applying the functionality to it isn't really what I need. But seeing how to structure the resulting array and all that was a big help. I'm writing a script which takes in all the…
Hey Vig thanks, it's just a little function. I like coding snippets here and there when got the chance. Some of them may eventually grow into more complex scripts.
<bool>maxOps.CloneNodes <&node array>nodes offset:<point3> expandHierarchy:<boolean> cloneType:<enum> actualNodeList:<node array> newNodes:<node array> I think this function should do the trick, for more info look in the help as always :) Found this by using the listener, it actually is helpfull sometimes :P I hope this…