Is there a way to add a modifier to multiple objects at once, but in a way that it gets added to each object individually, without being instanced, and scaled to encompass the group?
Solved! Go to Solution.
Is there a way to add a modifier to multiple objects at once, but in a way that it gets added to each object individually, without being instanced, and scaled to encompass the group?
Solved! Go to Solution.
Is there a way to add a modifier to multiple objects at once, but in a way that it gets added to each object individually, without being instanced
Yes, pretty easily:
Apply the modifier to all of your selected objects and then click on "make Unique". Then select "yes" to "Do you want to make the objects unique with respect to each other? See below:
"and scaled to encompass the group?"
Not sure what you mean by this last part, but hope the above helps.
Is there a way to add a modifier to multiple objects at once, but in a way that it gets added to each object individually, without being instanced
Yes, pretty easily:
Apply the modifier to all of your selected objects and then click on "make Unique". Then select "yes" to "Do you want to make the objects unique with respect to each other? See below:
"and scaled to encompass the group?"
Not sure what you mean by this last part, but hope the above helps.
Well I know all that. It's the scaling/positioning of the modifier that I'm trying to get around. For example, if I apply a UV modifier to 250 objects at the same time, the modifier is sized to encompass the whole group, even after I make them unique. I want the modifier to be centered on each object
Well I know all that. It's the scaling/positioning of the modifier that I'm trying to get around. For example, if I apply a UV modifier to 250 objects at the same time, the modifier is sized to encompass the whole group, even after I make them unique. I want the modifier to be centered on each object
Sorry, I wasn't sure what part you were hung up on and for an edit poly modifier for example there is no scaling issue that I am aware of. Anyway, to use your example of applying a UV Map to each of the 250 objects individually, why not just use the following line of Maxscript?
for obj in selection do addModifier obj (uvwMap maptype:4)
This avoids the instancing & de-instancing that is the cause of the issue and centers the modifier on each object's pivot to begin with. Hope this helps.
Sorry, I wasn't sure what part you were hung up on and for an edit poly modifier for example there is no scaling issue that I am aware of. Anyway, to use your example of applying a UV Map to each of the 250 objects individually, why not just use the following line of Maxscript?
for obj in selection do addModifier obj (uvwMap maptype:4)
This avoids the instancing & de-instancing that is the cause of the issue and centers the modifier on each object's pivot to begin with. Hope this helps.
Sorry for resurrecting this post, but this is possible without scripting. Something that i learned from Eloi Andaluz Fullà video
Check around the 3:40 mark
With multiple objects selected, press the modifier stack dropdown.
On top of the modifier list, there`s a checkbox 'Use Pivot Points'. Then apply the desired modifier.
This still creates instanced modifiers,but use the individual objects pivots for the gizmos.
Then you can press the 'Make Unique' button for the selection to make the modifiers unique to each other.
Sorry for resurrecting this post, but this is possible without scripting. Something that i learned from Eloi Andaluz Fullà video
Check around the 3:40 mark
With multiple objects selected, press the modifier stack dropdown.
On top of the modifier list, there`s a checkbox 'Use Pivot Points'. Then apply the desired modifier.
This still creates instanced modifiers,but use the individual objects pivots for the gizmos.
Then you can press the 'Make Unique' button for the selection to make the modifiers unique to each other.
Ah yes! I just KNEW I had seen something about this a couple years ago, but I couldn't remember what it was. There were a couple other things in that video that I wasn't aware of too. Thanks!
Ah yes! I just KNEW I had seen something about this a couple years ago, but I couldn't remember what it was. There were a couple other things in that video that I wasn't aware of too. Thanks!
Can't find what you're looking for? Ask the community or share your knowledge.