Fix bug #34611: bevel overlap limit
The previous fix limited overlap, but is sometimes too conservative, and artists want way to turn off the limiting, so added 'Allow Overlap' option to modifier.
This commit is contained in:
@@ -119,13 +119,13 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
|
||||
layout.prop(md, "end_cap")
|
||||
|
||||
def BEVEL(self, layout, ob, md):
|
||||
split = layout.split()
|
||||
|
||||
split.prop(md, "width")
|
||||
split.prop(md, "use_only_vertices")
|
||||
|
||||
layout.prop(md, "width")
|
||||
layout.prop(md, "segments")
|
||||
|
||||
split = layout.split()
|
||||
split.prop(md, "use_only_vertices")
|
||||
split.prop(md, "overlap_ok")
|
||||
|
||||
layout.label(text="Limit Method:")
|
||||
layout.row().prop(md, "limit_method", expand=True)
|
||||
if md.limit_method == 'ANGLE':
|
||||
|
Reference in New Issue
Block a user