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:
authorAntonio Vazquez <blendergit@gmail.com>2022-08-31 16:10:13 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-08-31 17:18:08 +0300
commitae79bc490a761cf351f09514356994d6efd586db (patch)
treed34eef42409c5b16852549b21f4e901d916d33a9 /source/blender/makesdna
parent097ed6565edd27c8178a764fe6dbacb1ba75ef52 (diff)
GPencil: Apply Brush Size to Outline thickness while drawing
The new factor allows to apply the current brush size to the external stroke perimeter conversion done in draw mode.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_brush_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h
index 174ec614238..33f5d8eea12 100644
--- a/source/blender/makesdna/DNA_brush_types.h
+++ b/source/blender/makesdna/DNA_brush_types.h
@@ -132,6 +132,10 @@ typedef struct BrushGpencilSettings {
struct CurveMapping *curve_rand_saturation;
struct CurveMapping *curve_rand_value;
+ /** Factor for external line thickness conversion to outline. */
+ float outline_fac;
+ char _pad1[4];
+
/* optional link of material to replace default in context */
/** Material. */
struct Material *material;