Notifications
Clear all
[Closed] Copy modifier while keeping gizmo limits
Jun 04, 2013 5:04 pm
Hello all,
So i’m trying to copy / instance a bend modifier from object A (Box01) to object B (Box02)
The code is fairly simple
objA = $Box01
objB = $Box02
bMod = objA.modifiers[1] --Bend modifier
addModifier objB bMod
This instances the modifier on objB. Great, but the gizmo limits (bounding box) are not the same as the bend on objA.
In contrast if i had copy instance-pasted the modifier in the viewport, i would get the same bounding box limits on B as in A (which is what i’m looking for). – cf. attached image
any ideas how i should go about it?
3 Replies
Jun 04, 2013 5:04 pm
m = obj1.bend
addmodifier obj2 m
setModContextBBox obj2 m (getModContextBBoxMin obj1 m) (getModContextBBoxMax obj1 m)
Jun 04, 2013 5:04 pm
Thx denisT
Just figured it out. setModContextBBox is vary badly documented. I was aware of the getModContextBBoxMin/Max but thought the bounding box limits were read-only.
1 Reply
help tells a little about it in the Node Common Properties, Operators, and Methods chapter.