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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2011-08-13 04:05:25 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2011-08-13 04:05:25 +0400
commit5057810bda81733eb55acca1d3eb5c73317d4c55 (patch)
tree9185c0800162c5baf661754fd1224bd938b1dd22 /release/scripts/startup
parent820ced18b980aac1f97278094fb5842c580afbc7 (diff)
New line style option for splitting chains of feature edges at material boundaries.
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/properties_render.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_render.py b/release/scripts/startup/bl_ui/properties_render.py
index 68806b3b126..87e72839fbb 100644
--- a/release/scripts/startup/bl_ui/properties_render.py
+++ b/release/scripts/startup/bl_ui/properties_render.py
@@ -477,6 +477,10 @@ class RENDER_PT_freestyle_linestyle(RenderButtonsPanel, bpy.types.Panel):
col.label(text="Chaining:")
col.prop(linestyle, "same_object")
col.separator()
+ col.label(text="Splitting:")
+ sub = col.row(align=True)
+ sub.prop(linestyle, "material_boundary")
+ col.separator()
col.label(text="Caps:")
sub = col.row(align=True)
sub.prop(linestyle, "caps", expand=True)