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:
authorCampbell Barton <ideasman42@gmail.com>2016-01-21 13:05:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-21 13:28:07 +0300
commitf758ee50e6d96e5342a9971bd76d9ff0352aafa3 (patch)
tree17dd061e81f09a0966984ceaf13818c908b76109 /release
parentadcef2bd3686a887fba8f08192751ab6736b9782 (diff)
Sculpt: Add rake option to snake-hook
This allows for dragging out shapes that rotate to follow the cursor motion. Values over 1 can be set for 'interesting' artistic effects.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py6
1 files changed, 6 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 9b6a0d47a40..7cff69f6964 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -951,6 +951,12 @@ class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
row = col.row(align=True)
row.prop(brush, "crease_pinch_factor", slider=True, text="Pinch")
+ # rake_factor
+ if capabilities.has_rake_factor:
+ col.separator()
+ row = col.row(align=True)
+ row.prop(brush, "rake_factor", slider=True)
+
# use_original_normal and sculpt_plane
if capabilities.has_sculpt_plane:
col.separator()