Improve Solidify/Bevel Modifier cooperation

Adds a slider to solidify which allows the user to add bevel weight on the outside
or remove bevel weight from the inside.

Also includes a very small improvment for working with subsurface modifier where
the rim edge in complex solidify will now also have a chance to get a crease if
there is only two adjacent edges.

Differential Revision: https://developer.blender.org/D7334

Reviewing and minor cleanups: Bastien Montagne (@mont29).
This commit is contained in:
Henrik Dick
2020-04-14 10:45:53 +02:00
committed by Bastien Montagne
parent b07e8a24f5
commit 35b1cc806f
6 changed files with 235 additions and 95 deletions

View File

@@ -1049,7 +1049,12 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop(md, "edge_crease_inner", text="Inner")
col.prop(md, "edge_crease_outer", text="Outer")
col.prop(md, "edge_crease_rim", text="Rim")
col.label(text="Bevel:")
col.prop(md, "bevel_convex")
else:
col.label(text="Bevel:")
col.prop(md, "bevel_convex")
col.separator()
col.prop(md, "nonmanifold_merge_threshold")
col = split.column()