f97ao
01-31-2005, 09:20 AM
To my dispair I have not found a way to copy a modifier from object to object.
Yes of course you can "move" a modifier to another object, but it will loose the data. In the max viewport you can however copy the modifiers and maintain the data. Is there a way to do this with maxScript?
Try this:
- Create an object, then copy it so you have 2 identical
- create an edit_poly modifier and extrude some faces on one object.
- Now you drag this modifier from the stack to the other object
As you see the other object will now have extrusions as well.
Is this possible with maxScript?
I have tried this:
mod=box01.modifiers[1]
addModifiers box02 mod
This will apply the modifier on the other box with the same settings but the extrusions are gone :(
/Andreas
Yes of course you can "move" a modifier to another object, but it will loose the data. In the max viewport you can however copy the modifiers and maintain the data. Is there a way to do this with maxScript?
Try this:
- Create an object, then copy it so you have 2 identical
- create an edit_poly modifier and extrude some faces on one object.
- Now you drag this modifier from the stack to the other object
As you see the other object will now have extrusions as well.
Is this possible with maxScript?
I have tried this:
mod=box01.modifiers[1]
addModifiers box02 mod
This will apply the modifier on the other box with the same settings but the extrusions are gone :(
/Andreas
