Notifications
Clear all
[Closed] Compound Shape – Shape Boolean in 3dsmax 2020
Feb 28, 2020 7:11 pm
does anyone know if Compound Shape Shape Boolean in 3dsmax 2020 have access through max script .
3 Replies
Feb 28, 2020 7:11 pm
thanks , i did search the documentation i don,t know how i missed that.
i’ll be helpful like intersection.
fn AddIntersect A =
(
deSelect A
select A[1]
(macros.run "Shapes Compounds" "ShapeBoolean")
A[1].operation[1] = 3
for s=2 to A.count do
(
A[1].AppendOperand A[1] A[s] true
)
convertToSplineShape A[1]
)
AddIntersect (selection as array)
Feb 28, 2020 7:11 pm
the resulted shape from shapesBoolean become closed shape on converttospline. even after manually deleting the segment it gets closed on deselect. anyone know why ?