PDA

View Full Version : removing operators?


Marley
09-03-2002, 07:09 PM
ok here is another one:wip:

if I have objects selected which have no relation to each other and want to let's say remove the noise modifier from all of them (which could also be in different positions in the stack).

how would I do that?

thanks again

noon
09-03-2002, 08:05 PM
I'm not sure you can do that without creating your own script.

Maxscript can resolve many repetitive and uncommon situation like yours :
------------------------------------------------------------------------
fn delAllNoiseModifier s =
(
while (s.modifiers[#'noise'] != undefined ) do
deleteModifier s s.modifiers[#'noise']
)
for s in selection do delAllNoiseModifier s

Marley
09-03-2002, 10:16 PM
ok thanks ... i was hoping to get this script here =)

:bounce: :bounce: :bounce:

CGTalk Moderation
01-13-2006, 03:00 PM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.