From f758ee50e6d96e5342a9971bd76d9ff0352aafa3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 21 Jan 2016 21:05:49 +1100 Subject: 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. --- release/scripts/startup/bl_ui/space_view3d_toolbar.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'release') 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() -- cgit v1.2.3