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:
authorPablo Dobarro <pablodp606@gmail.com>2020-01-22 04:23:51 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-02-11 20:57:07 +0300
commit015d5eda884dfb10f8982f9b0f8d69c9ea540349 (patch)
treed48f2ef3aea20b1ff69e54b7990f32b22104791e /source/blender/makesdna
parentf1f2d9fe745e37d7e7c286002ec3fa6243b499e3 (diff)
Sculpt: Clay Thumb Brush
This brush simulates deforming clay with your fingers, accumulating material during the stroke. It has a plane that tilts during the stroke in the front part of the brush to achieve this effect. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D6238
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_brush_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h
index e711fd13822..278256f39c8 100644
--- a/source/blender/makesdna/DNA_brush_types.h
+++ b/source/blender/makesdna/DNA_brush_types.h
@@ -505,6 +505,7 @@ typedef enum eBrushSculptTool {
SCULPT_TOOL_POSE = 22,
SCULPT_TOOL_MULTIPLANE_SCRAPE = 23,
SCULPT_TOOL_SLIDE_RELAX = 24,
+ SCULPT_TOOL_CLAY_THUMB = 25,
} eBrushSculptTool;
/* Brush.uv_sculpt_tool */
@@ -526,6 +527,7 @@ typedef enum eBrushUVSculptTool {
SCULPT_TOOL_INFLATE, \
SCULPT_TOOL_CLAY, \
SCULPT_TOOL_CLAY_STRIPS, \
+ SCULPT_TOOL_CLAY_THUMB, \
SCULPT_TOOL_ROTATE, \
SCULPT_TOOL_SCRAPE, \
SCULPT_TOOL_FLATTEN)