ScriptSpot

Forum topic · General Scripting

Group Question

By chooj · 2015-12-06

Description

I have question about how to add a modifier to the group. Here is my simpe code:

group $ name:"first"
select $first
mybend = bend()
addmodifier $ mybend

But the bend modifier applies to each object in group separately, not to the group itself. So the question is - how to apply modifier to the group itself?

Comments (2)

.

miauu · 2015-12-06


(
	group $ name:"first"
	select $first
	mybend = bend()
	max modify mode
	modPanel.addModToSelection  mybend
)

chooj · 2015-12-06

thanx! now it is working!