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:
authorAntonio Vazquez <blendergit@gmail.com>2019-09-11 13:27:47 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-09-11 13:28:23 +0300
commitef18b672f5a57d86d264af0f875a37c6a9c6677a (patch)
treee003422dc7945783e6dde1d927c8ed05fd412d96 /release
parent7e61e597253f3ca75f2fb86a57212ca750ffbbe8 (diff)
GPencil: New Brush postprocesing Simplify
This option allows to apply a simplify when the stroke is completed. The simplify use the Adaptive option to keep the shape.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index e6cbef16595..3ff7bd83b1f 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1948,6 +1948,9 @@ class VIEW3D_PT_tools_grease_pencil_brush_settings(View3DPanel, Panel):
col.prop(gp_settings, "random_subdiv", text="Randomness", slider=True)
col = layout.column(align=True)
+ col.prop(gp_settings, "simplify_factor")
+
+ col = layout.column(align=True)
col.prop(gp_settings, "trim")