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:
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_render.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/ui/properties_render.py b/release/scripts/ui/properties_render.py
index 60f3a0e5afc..b6760f823df 100644
--- a/release/scripts/ui/properties_render.py
+++ b/release/scripts/ui/properties_render.py
@@ -194,6 +194,7 @@ class RENDER_PT_freestyle(RenderButtonsPanel, bpy.types.Panel):
if freestyle.mode == "EDITOR":
col.label(text="Edge Detection Options:")
+ col.prop(freestyle, "use_smoothness")
col.prop(freestyle, "crease_angle")
col.prop(freestyle, "sphere_radius")
col.prop(freestyle, "kr_derivative_epsilon")
@@ -253,6 +254,7 @@ class RENDER_PT_freestyle(RenderButtonsPanel, bpy.types.Panel):
else: # freestyle.mode == "SCRIPT"
+ col.prop(freestyle, "use_smoothness")
col.prop(freestyle, "crease_angle")
col.prop(freestyle, "sphere_radius")
col.prop(freestyle, "use_ridges_and_valleys")