From 10c11bb89736d19f06131378dc539fb225b9b562 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 8 Mar 2022 10:41:52 +0100 Subject: Curves: add initial comb, grow and shrink brush The exact behavior of the brushes is still being iterated on, but it helps having a base implementation that we can work upon. All of that is still hidden behind an experimental feature flag anyway. The brushes will get a name in the ui soon. Differential Revision: https://developer.blender.org/D14241 --- source/blender/makesrna/intern/rna_brush.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/makesrna/intern/rna_brush.c') diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c index e282b474d8d..12c8a41009d 100644 --- a/source/blender/makesrna/intern/rna_brush.c +++ b/source/blender/makesrna/intern/rna_brush.c @@ -247,6 +247,8 @@ const EnumPropertyItem rna_enum_brush_curves_sculpt_tool_items[] = { {CURVES_SCULPT_TOOL_TEST1, "TEST1", ICON_NONE, "Test 1", ""}, {CURVES_SCULPT_TOOL_TEST2, "TEST2", ICON_NONE, "Test 2", ""}, {CURVES_SCULPT_TOOL_TEST3, "TEST3", ICON_NONE, "Test 3", ""}, + {CURVES_SCULPT_TOOL_TEST4, "TEST4", ICON_NONE, "Test 4", ""}, + {CURVES_SCULPT_TOOL_TEST5, "TEST5", ICON_NONE, "Test 5", ""}, {0, NULL, 0, NULL, NULL}, }; -- cgit v1.2.3