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.
This commit is contained in:
Campbell Barton
2016-01-21 21:05:49 +11:00
parent adcef2bd36
commit f758ee50e6
6 changed files with 165 additions and 1 deletions

View File

@@ -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()