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:
Diffstat (limited to 'source/blender/blenkernel/intern/brush.c')
-rw-r--r--source/blender/blenkernel/intern/brush.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c
index 75669e8289a..a873f3a3f13 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -930,8 +930,9 @@ void BKE_brush_sculpt_reset(Brush *br)
br->flag |= BRUSH_FRONTFACE;
break;
case SCULPT_TOOL_CLAY_STRIPS:
- br->flag |= BRUSH_ACCUMULATE;
- br->alpha = 0.7f;
+ br->flag |= BRUSH_ACCUMULATE | BRUSH_SIZE_PRESSURE;
+ br->flag &= ~BRUSH_SPACE_ATTEN;
+ br->alpha = 0.6f;
br->normal_radius_factor = 1.55f;
br->curve_preset = BRUSH_CURVE_SPHERE;
br->spacing = 6;