Notifications
Clear all
[Closed] Collapse selected objects into one single EP
Sep 16, 2010 12:09 pm
Hi all! I suspect this is a rather simple maxscript operation, to collapse selected objects inte one single Editable poly. Could anyone please share how to do this?
Take care!
/Matt
2 Replies
Sep 16, 2010 12:09 pm
Just so happened I had this code open in max when I read this…
Assets = #()
for o in selection do append Assets o
convertToPoly(Assets[1])
for i = 2 to Assets.count do
(
convertToPoly(Assets[i])
polyop.attach Assets[1] Assets[i]
)