Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2014-01-14 20:00:44 +0400
committerHoward Trickey <howard.trickey@gmail.com>2014-01-14 20:07:45 +0400
commit86616c675aeaccec060f9ac7a98fbff67816516b (patch)
tree8624307b426ead258531394d75658f50963a5da4 /release
parentdfac6c4189b0497f19c988d536464703fda09c39 (diff)
Bevel Modifier: add width type and profile control.
This adds to the modifier the new controls that have been added to the bevel tool.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index 59b369df6d4..f9684794b79 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -126,6 +126,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col = split.column()
col.prop(md, "width")
col.prop(md, "segments")
+ col.prop(md, "profile")
col = split.column()
col.prop(md, "use_only_vertices")
@@ -138,8 +139,9 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
elif md.limit_method == 'VGROUP':
layout.label(text="Vertex Group:")
layout.prop_search(md, "vertex_group", ob, "vertex_groups", text="")
- # elif md.limit_method == 'WEIGHT':
- # layout.row().prop(md, "edge_weight_method", expand=True)
+
+ layout.label(text="Width Method:")
+ layout.row().prop(md, "offset_type", expand=True)
def BOOLEAN(self, layout, ob, md):
split = layout.split()