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/makesdna/DNA_brush_types.h')
-rw-r--r--source/blender/makesdna/DNA_brush_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h
index 78e3a64e07e..564f34b1f72 100644
--- a/source/blender/makesdna/DNA_brush_types.h
+++ b/source/blender/makesdna/DNA_brush_types.h
@@ -137,6 +137,11 @@ typedef struct BrushGpencilSettings {
struct Material *material;
} BrushGpencilSettings;
+typedef struct BrushCurvesSculptSettings {
+ /* Number of curves added by the add brush. */
+ int add_amount;
+} BrushCurvesSculptSettings;
+
typedef struct Brush {
ID id;
@@ -360,7 +365,7 @@ typedef struct Brush {
float mask_stencil_dimension[2];
struct BrushGpencilSettings *gpencil_settings;
-
+ struct BrushCurvesSculptSettings *curves_sculpt_settings;
} Brush;
/* Struct to hold palette colors for sorting. */