Notifications
Clear all

[Closed] Collapse selected objects into one single EP

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

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]
)

haha… great, thank you very much Dave!