Announcement

Collapse
No announcement yet.

Looking for a script : Mass remover Hair&Fur ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Looking for a script : Mass remover Hair&Fur ?

    I've been looking for a script a while which removes all Hair & Fur modifiers in a scene. (or at least locating them) Is there any around ? It's pretty annoying to check all items, especially when they're all grouped.

    Thnx in advance!

  • #2
    To list the objects in your max listener in the bottom left of the ui

    Code:
    for o in objects do
    (
    	for m = 1 to o.modifiers.count do
    	(
    		if classof o.modifiers[m] == hairmod then
    		(
    			print o.name
    		)
    	)
    )
    To delete them all:

    Code:
    for o in objects do
    (
    	for m = 1 to o.modifiers.count do
    	(
    		if classof o.modifiers[m] == hairmod then
    		(
    			deletemodifier o m
    		)
    	)
    )
    Last edited by joconnell; 13-06-2013, 04:21 AM.

    Comment


    • #3
      Thanks a million ! That does the trick !

      Comment

      Working...
      X