Source list

Post Reply
joel_lelievre
Posts: 1
Joined: Wed Jul 23, 2008 12:07 pm

Source list

Post by joel_lelievre »

Allowing for a shift-select for entries in the source list sure would makes things easier. Removing items 1 at a time can be time consuming. :)
jrandom
Posts: 4
Joined: Wed Jul 21, 2010 9:10 pm

Post by jrandom »

Hey Joel you can via maxscript:

To remove all:

theMesher = $SuperMesher001
theMesher.nodelist = #()


To remove scene selected objects:

For Example you have a Box, Teapot, Cylinder, Torus. All but the Torus are within the SuperMesher compound. Select all or any of them and run the script below. If they are within the SM compound they will be removed.

theMesher = $SuperMesher001
theSelection = selection as array
for i in theSelection do
(
theMesher.removeObjects i
)

There is pretty decent mxs exposure in this plugin :)

It would not be hard to script up a multi-listbox to do this exact thing.
particle mechanic
Post Reply