Added UI controls for specifying logical operations (logical AND, OR,

and NOT) to combine feature edge selection criteria.
This commit is contained in:
2010-07-05 22:32:51 +00:00
parent b8de9bc5fb
commit ae9b9b43e6
3 changed files with 29 additions and 0 deletions

View File

@@ -221,6 +221,11 @@ class RENDER_PT_freestyle(RenderButtonsPanel):
if lineset:
col.prop(lineset, "name")
row = col.row()
row.prop(lineset, "selection_negation", expand=True)
row = col.row()
row.prop(lineset, "selection_combination", expand=True)
row = col.row()
sub = row.column()
sub.prop(lineset, "select_silhouette")