Hi Guys!
Is there a script out there, which helps to remove the TurboSmooth modifier from all Objects i have in my 3DSMax Scene?
Doin this per Hand takes time and sucks.
Also it would be great to add a TurboSmooth to all Objects just per Click.
Can somebody help?
Greetings,
Gazu
                    
                 
            
Replies
You can install Zorb Tool. It's very useful script and has a lot of functions in it. But on the other hand you can use just THIS script for disabling all turbosmooth modifiers in your scene.
theObjects = geometry as array for obj in theObjects do for index = obj.modifiers.count to 1 by -1 do if ((classOf obj.modifiers[index]) == TurboSmooth) do deleteModifier obj indexTo add Turbosmooth to all objects
theObjects = geometry as array for obj in theObjects do ( addmodifier obj (turbosmooth()) )