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>2020-03-01 21:57:44 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-03-01 22:05:58 +0300
commitff0124418f42dc12f31b00faf23276db961e2e51 (patch)
tree56dbd9be3bf1f967b997fe6fddb86125dd40dc75 /source/blender/makesdna/DNA_brush_types.h
parentfc7fdc5c4ed69809bcecc5762957aa42375ca6a2 (diff)
Sculpt: Hardness brush property
The hardness property moves the brush falloff towards the edges, making the brush sharper. This should be the intended way to control the brush falloff instead of tweaking the falloff curve manually, as it can be mapped to pressure to make the falloff variable during the stroke. It is also a good idea to show in the UI that the custom curves is an advance features and it should almost never be modified when sculpting/ painting unless you want to create some advanced effects. By modifying the curves freely it is really easy to break the brushes and make them produce artifacts. This needs to be done in a later after merging the pending projects to reorganize all the brush properties accordingly. Reviewed By: brecht Differential Revision: https://developer.blender.org/D6902
Diffstat (limited to 'source/blender/makesdna/DNA_brush_types.h')
-rw-r--r--source/blender/makesdna/DNA_brush_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h
index e14732ee77a..2b7e9246d36 100644
--- a/source/blender/makesdna/DNA_brush_types.h
+++ b/source/blender/makesdna/DNA_brush_types.h
@@ -326,7 +326,7 @@ typedef struct Brush {
char mask_tool;
/** Active grease pencil tool. */
char gpencil_tool;
- char _pad1[1];
+ char _pad1[5];
float autosmooth_factor;
@@ -344,6 +344,8 @@ typedef struct Brush {
float texture_sample_bias;
int curve_preset;
+ float hardness;
+
int automasking_flags;
/* Factor that controls the shape of the brush tip by rounding the corners of a square. */