From 72666ae3e7b7854429cb297d767833fd41bac812 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 2 Oct 2019 03:32:51 +1000 Subject: Brush: default the strength to 1.0 This applies to all paint modes except sculpt and grease pencil brushes. When painting color or weight it's best to paint the color the user has selected, without them having to make multiple strokes. --- source/blender/makesdna/DNA_brush_defaults.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesdna/DNA_brush_defaults.h') diff --git a/source/blender/makesdna/DNA_brush_defaults.h b/source/blender/makesdna/DNA_brush_defaults.h index cf4e74dfd41..714c205cda2 100644 --- a/source/blender/makesdna/DNA_brush_defaults.h +++ b/source/blender/makesdna/DNA_brush_defaults.h @@ -40,7 +40,7 @@ /* BRUSH SCULPT TOOL SETTINGS */ \ .weight = 1.0f, /* weight of brush 0 - 1.0 */ \ .size = 35, /* radius of the brush in pixels */ \ - .alpha = 0.5f, /* brush strength/intensity probably variable should be renamed? */ \ + .alpha = 1.0f, /* brush strength/intensity probably variable should be renamed? */ \ .autosmooth_factor = 0.0f, \ .topology_rake_factor = 0.0f, \ .crease_pinch_factor = 0.5f, \ -- cgit v1.2.3