GP: New Cutter, Constraints and Segment selection
This commit groups a set of new tools that were tested in grease pencil object branch before moving to master. We decide to do all the development in a separated branch because it could break master during days or weeks before the new tools were ready to deploy. The commit includes: - New Cutter tool to trim strokes and help cleaning up drawings. - New set of constraints and guides to draw different types of shapes. All the credits for this development goes to Charlie Jolly (@charlie), thanks for your help! - Segment selection mode to select strokes between intersections. - New operator to change strokes cap mode. - New option to display only keyframed frames. This option is very important when fill strokes with color. - Multiple small fixes and tweaks. Thanks to @pepeland and @mendio for their ideas, tests, reviews and support. Note: Still pending the final icons for Cutter in Toolbar and Segment Selection in Topbar. @billreynish could help us here?
This commit is contained in:
@@ -20,9 +20,9 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
/** \file blender/makesrna/intern/rna_gpencil.c
|
||||
* \ingroup RNA
|
||||
*/
|
||||
/** \file blender/makesrna/intern/rna_gpencil.c
|
||||
* \ingroup RNA
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
|
||||
#include "WM_types.h"
|
||||
|
||||
/* parent type */
|
||||
/* parent type */
|
||||
static const EnumPropertyItem parent_type_items[] = {
|
||||
{PAROBJECT, "OBJECT", 0, "Object", "The layer is parented to an object"},
|
||||
{PARSKEL, "ARMATURE", 0, "Armature", ""},
|
||||
@@ -87,6 +87,12 @@ static const EnumPropertyItem rna_enum_layer_blend_modes_items[] = {
|
||||
{eGplBlendMode_Divide, "DIVIDE", 0, "Divide", "" },
|
||||
{0, NULL, 0, NULL, NULL }
|
||||
};
|
||||
|
||||
static EnumPropertyItem rna_enum_gpencil_caps_modes_items[] = {
|
||||
{GP_STROKE_CAP_ROUND, "ROUND", 0, "Rounded", ""},
|
||||
{GP_STROKE_CAP_FLAT, "FLAT", 0, "Flat", ""},
|
||||
{0, NULL, 0, NULL, NULL}
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef RNA_RUNTIME
|
||||
@@ -285,8 +291,8 @@ static void rna_GPencilLayer_parent_bone_set(PointerRNA *ptr, const char *value)
|
||||
|
||||
/* parent types enum */
|
||||
static const EnumPropertyItem *rna_Object_parent_type_itemf(
|
||||
bContext *UNUSED(C), PointerRNA *ptr,
|
||||
PropertyRNA *UNUSED(prop), bool *r_free)
|
||||
bContext *UNUSED(C), PointerRNA *ptr,
|
||||
PropertyRNA *UNUSED(prop), bool *r_free)
|
||||
{
|
||||
bGPDlayer *gpl = (bGPDlayer *)ptr->data;
|
||||
EnumPropertyItem *item = NULL;
|
||||
@@ -376,7 +382,7 @@ static int rna_GPencil_active_layer_index_get(PointerRNA *ptr)
|
||||
|
||||
static void rna_GPencil_active_layer_index_set(PointerRNA *ptr, int value)
|
||||
{
|
||||
bGPdata *gpd = (bGPdata *)ptr->id.data;
|
||||
bGPdata *gpd = (bGPdata *)ptr->id.data;
|
||||
bGPDlayer *gpl = BLI_findlink(&gpd->layers, value);
|
||||
|
||||
BKE_gpencil_layer_setactive(gpd, gpl);
|
||||
@@ -398,11 +404,11 @@ static void rna_GPencil_active_layer_index_range(PointerRNA *ptr, int *min, int
|
||||
}
|
||||
|
||||
static const EnumPropertyItem *rna_GPencil_active_layer_itemf(
|
||||
bContext *C, PointerRNA *ptr, PropertyRNA *UNUSED(prop), bool *r_free)
|
||||
bContext *C, PointerRNA *ptr, PropertyRNA *UNUSED(prop), bool *r_free)
|
||||
{
|
||||
bGPdata *gpd = (bGPdata *)ptr->id.data;
|
||||
bGPDlayer *gpl;
|
||||
EnumPropertyItem *item = NULL, item_tmp = {0};
|
||||
EnumPropertyItem *item = NULL, item_tmp = { 0 };
|
||||
int totitem = 0;
|
||||
int i = 0;
|
||||
|
||||
@@ -507,11 +513,11 @@ static void rna_GPencil_stroke_point_add(ID *id, bGPDstroke *stroke, int count,
|
||||
if (count > 0) {
|
||||
/* create space at the end of the array for extra points */
|
||||
stroke->points = MEM_recallocN_id(stroke->points,
|
||||
sizeof(bGPDspoint) * (stroke->totpoints + count),
|
||||
"gp_stroke_points");
|
||||
sizeof(bGPDspoint) * (stroke->totpoints + count),
|
||||
"gp_stroke_points");
|
||||
stroke->dvert = MEM_recallocN_id(stroke->dvert,
|
||||
sizeof(MDeformVert) * (stroke->totpoints + count),
|
||||
"gp_stroke_weight");
|
||||
sizeof(MDeformVert) * (stroke->totpoints + count),
|
||||
"gp_stroke_weight");
|
||||
|
||||
/* init the pressure and strength values so that old scripts won't need to
|
||||
* be modified to give these initial values...
|
||||
@@ -968,6 +974,19 @@ static void rna_def_gpencil_stroke(BlenderRNA *brna)
|
||||
RNA_def_property_ui_text(prop, "Cyclic", "Enable cyclic drawing, closing the stroke");
|
||||
RNA_def_property_update(prop, 0, "rna_GPencil_update");
|
||||
|
||||
/* Caps mode */
|
||||
prop = RNA_def_property(srna, "start_cap_mode", PROP_ENUM, PROP_NONE);
|
||||
RNA_def_property_enum_sdna(prop, NULL, "caps[0]");
|
||||
RNA_def_property_enum_items(prop, rna_enum_gpencil_caps_modes_items);
|
||||
RNA_def_property_ui_text(prop, "Start Cap", "Stroke start extreme cap style");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
|
||||
|
||||
prop = RNA_def_property(srna, "end_cap_mode", PROP_ENUM, PROP_NONE);
|
||||
RNA_def_property_enum_sdna(prop, NULL, "caps[1]");
|
||||
RNA_def_property_enum_items(prop, rna_enum_gpencil_caps_modes_items);
|
||||
RNA_def_property_ui_text(prop, "End Cap", "Stroke end extreme cap style");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
|
||||
|
||||
/* No fill: The stroke never must fill area and must use fill color as stroke color (this is a special flag for fill brush) */
|
||||
prop = RNA_def_property(srna, "is_nofill_stroke", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_STROKE_NOFILL);
|
||||
@@ -1066,7 +1085,7 @@ static void rna_def_gpencil_frames_api(BlenderRNA *brna, PropertyRNA *cprop)
|
||||
RNA_def_function_ui_description(func, "Add a new grease pencil frame");
|
||||
RNA_def_function_flag(func, FUNC_USE_REPORTS);
|
||||
parm = RNA_def_int(func, "frame_number", 1, MINAFRAME, MAXFRAME, "Frame Number",
|
||||
"The frame on which this sketch appears", MINAFRAME, MAXFRAME);
|
||||
"The frame on which this sketch appears", MINAFRAME, MAXFRAME);
|
||||
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
|
||||
parm = RNA_def_pointer(func, "frame", "GPencilFrame", "", "The newly created frame");
|
||||
RNA_def_function_return(func, parm);
|
||||
@@ -1261,6 +1280,13 @@ static void rna_def_gpencil_layer(BlenderRNA *brna)
|
||||
"Clamp any pixel outside underlying layers drawing");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, NULL);
|
||||
|
||||
/* solo mode: Only display frames with keyframe */
|
||||
prop = RNA_def_property(srna, "use_solo_mode", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_LAYER_SOLO_MODE);
|
||||
RNA_def_property_ui_text(prop, "Solo Mode",
|
||||
"In Paint mode display only layers with keyframe in current frame");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
|
||||
|
||||
/* exposed as layers.active */
|
||||
#if 0
|
||||
prop = RNA_def_property(srna, "active", PROP_BOOLEAN, PROP_NONE);
|
||||
@@ -1373,20 +1399,20 @@ static void rna_def_gpencil_layers_api(BlenderRNA *brna, PropertyRNA *cprop)
|
||||
|
||||
prop = RNA_def_property(srna, "active_index", PROP_INT, PROP_UNSIGNED);
|
||||
RNA_def_property_int_funcs(
|
||||
prop,
|
||||
"rna_GPencil_active_layer_index_get",
|
||||
"rna_GPencil_active_layer_index_set",
|
||||
"rna_GPencil_active_layer_index_range");
|
||||
prop,
|
||||
"rna_GPencil_active_layer_index_get",
|
||||
"rna_GPencil_active_layer_index_set",
|
||||
"rna_GPencil_active_layer_index_range");
|
||||
RNA_def_property_ui_text(prop, "Active Layer Index", "Index of active grease pencil layer");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA | NA_SELECTED, NULL);
|
||||
|
||||
/* Active Layer - As an enum (for selecting active layer for annotations) */
|
||||
prop = RNA_def_property(srna, "active_note", PROP_ENUM, PROP_NONE);
|
||||
RNA_def_property_enum_funcs(
|
||||
prop,
|
||||
"rna_GPencil_active_layer_index_get",
|
||||
"rna_GPencil_active_layer_index_set",
|
||||
"rna_GPencil_active_layer_itemf");
|
||||
prop,
|
||||
"rna_GPencil_active_layer_index_get",
|
||||
"rna_GPencil_active_layer_index_set",
|
||||
"rna_GPencil_active_layer_itemf");
|
||||
RNA_def_property_enum_items(prop, DummyRNA_DEFAULT_items); /* purely dynamic, as it maps to user-data */
|
||||
RNA_def_property_ui_text(prop, "Active Note", "Note/Layer to add annotation strokes to");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
|
||||
@@ -1405,7 +1431,7 @@ static void rna_def_gpencil_grid(BlenderRNA *brna)
|
||||
|
||||
RNA_def_struct_path_func(srna, "rna_GreasePencilGrid_path");
|
||||
RNA_def_struct_ui_text(srna, "Grid and Canvas Settings",
|
||||
"Settings for grid and canvas in 3D viewport");
|
||||
"Settings for grid and canvas in 3D viewport");
|
||||
|
||||
prop = RNA_def_property(srna, "scale", PROP_FLOAT, PROP_XYZ);
|
||||
RNA_def_property_float_sdna(prop, NULL, "scale");
|
||||
@@ -1510,7 +1536,7 @@ static void rna_def_gpencil_data(BlenderRNA *brna)
|
||||
prop = RNA_def_property(srna, "show_stroke_direction", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_DATA_SHOW_DIRECTION);
|
||||
RNA_def_property_ui_text(prop, "Show Direction", "Show stroke drawing direction with a bigger green dot (start) "
|
||||
"and smaller red dot (end) points");
|
||||
"and smaller red dot (end) points");
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
|
||||
|
||||
prop = RNA_def_property(srna, "show_constant_thickness", PROP_BOOLEAN, PROP_NONE);
|
||||
|
||||
@@ -2381,6 +2381,8 @@ static void rna_def_tool_settings(BlenderRNA *brna)
|
||||
static const EnumPropertyItem gpencil_selectmode_items[] = {
|
||||
{GP_SELECTMODE_POINT, "POINT", ICON_GP_SELECT_POINTS, "Point", "Select only points"},
|
||||
{GP_SELECTMODE_STROKE, "STROKE", ICON_GP_SELECT_STROKES, "Stroke", "Select all stroke points" },
|
||||
/* GPXX need better icon for segment */
|
||||
{GP_SELECTMODE_SEGMENT, "SEGMENT", ICON_SHADERFX, "Segment", "Select all stroke points between other strokes" },
|
||||
{0, NULL, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "BLI_math.h"
|
||||
#include "BLI_utildefines.h"
|
||||
|
||||
#include "RNA_define.h"
|
||||
@@ -544,6 +545,10 @@ static char *rna_GPencilSculptBrush_path(PointerRNA *UNUSED(ptr))
|
||||
return BLI_strdup("tool_settings.gpencil_sculpt.brush");
|
||||
}
|
||||
|
||||
static char *rna_GPencilSculptGuide_path(PointerRNA *UNUSED(ptr))
|
||||
{
|
||||
return BLI_strdup("tool_settings.gpencil_sculpt.guide");
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
@@ -1194,6 +1199,99 @@ static void rna_def_particle_edit(BlenderRNA *brna)
|
||||
RNA_def_property_ui_text(prop, "Curve", "");
|
||||
}
|
||||
|
||||
/* srna -- gpencil speed guides */
|
||||
static void rna_def_gpencil_guides(BlenderRNA *brna)
|
||||
{
|
||||
StructRNA *srna;
|
||||
PropertyRNA *prop;
|
||||
|
||||
srna = RNA_def_struct(brna, "GPencilSculptGuide", NULL);
|
||||
RNA_def_struct_sdna(srna, "GP_Sculpt_Guide");
|
||||
RNA_def_struct_path_func(srna, "rna_GPencilSculptGuide_path");
|
||||
RNA_def_struct_ui_text(srna, "GPencil Sculpt Guide", "Guides for drawing");
|
||||
|
||||
static const EnumPropertyItem prop_gpencil_guidetypes[] = {
|
||||
{GP_GUIDE_CIRCULAR, "CIRCULAR", 0, "Circular", "Use single point to create rings"},
|
||||
{GP_GUIDE_RADIAL, "RADIAL", 0, "Radial", "Use single point as direction"},
|
||||
{GP_GUIDE_PARALLEL, "PARALLEL", 0, "Parallel", "Parallel lines"},
|
||||
{GP_GUIDE_GRID, "GRID", 0, "Grid", "Grid allows horizontal and vertical lines"},
|
||||
{0, NULL, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
static const EnumPropertyItem prop_gpencil_guide_references[] = {
|
||||
{GP_GUIDE_REF_CURSOR, "CURSOR", 0, "Cursor", "Use cursor as reference point"},
|
||||
{GP_GUIDE_REF_CUSTOM, "CUSTOM", 0, "Custom", "Use custom reference point"},
|
||||
{GP_GUIDE_REF_OBJECT, "OBJECT", 0, "Object", "Use object as reference point"},
|
||||
{0, NULL, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
prop = RNA_def_property(srna, "use_guide", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "use_guide", false);
|
||||
RNA_def_property_boolean_default(prop, false);
|
||||
RNA_def_property_ui_text(prop, "Use Guides", "Enable speed guides");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "use_snapping", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "use_snapping", false);
|
||||
RNA_def_property_boolean_default(prop, false);
|
||||
RNA_def_property_ui_text(prop, "Use Snapping", "Enable snapping to guides angle or spacing options");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "reference_object", PROP_POINTER, PROP_NONE);
|
||||
RNA_def_property_pointer_sdna(prop, NULL, "reference_object");
|
||||
RNA_def_property_ui_text(prop, "Object", "Object used for reference point");
|
||||
RNA_def_property_flag(prop, PROP_EDITABLE | PROP_ID_SELF_CHECK);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, "rna_ImaPaint_viewport_update");
|
||||
|
||||
prop = RNA_def_property(srna, "reference_point", PROP_ENUM, PROP_NONE);
|
||||
RNA_def_property_enum_sdna(prop, NULL, "reference_point");
|
||||
RNA_def_property_enum_items(prop, prop_gpencil_guide_references);
|
||||
RNA_def_property_ui_text(prop, "Type", "Type of speed guide");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, "rna_ImaPaint_viewport_update");
|
||||
|
||||
prop = RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
|
||||
RNA_def_property_enum_sdna(prop, NULL, "type");
|
||||
RNA_def_property_enum_items(prop, prop_gpencil_guidetypes);
|
||||
RNA_def_property_ui_text(prop, "Type", "Type of speed guide");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "angle", PROP_FLOAT, PROP_ANGLE);
|
||||
RNA_def_property_float_sdna(prop, NULL, "angle");
|
||||
RNA_def_property_range(prop, -(M_PI * 2.0f), (M_PI * 2.0f));
|
||||
RNA_def_property_ui_text(prop, "Angle", "Direction of lines");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "angle_snap", PROP_FLOAT, PROP_ANGLE);
|
||||
RNA_def_property_float_sdna(prop, NULL, "angle_snap");
|
||||
RNA_def_property_range(prop, -(M_PI * 2.0f), (M_PI * 2.0f));
|
||||
RNA_def_property_ui_text(prop, "Angle Snap", "Angle snapping");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "spacing", PROP_FLOAT, PROP_DISTANCE);
|
||||
RNA_def_property_float_sdna(prop, NULL, "spacing");
|
||||
RNA_def_property_float_default(prop, 0.01f);
|
||||
RNA_def_property_range(prop, 0.0f, FLT_MAX);
|
||||
RNA_def_property_ui_range(prop, 0.0f, FLT_MAX, 1, 3);
|
||||
RNA_def_property_ui_text(prop, "Spacing", "Guide spacing");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "location", PROP_FLOAT, PROP_DISTANCE);
|
||||
RNA_def_property_float_sdna(prop, NULL, "location");
|
||||
RNA_def_property_array(prop, 3);
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_ui_text(prop, "Location", "Custom reference point for guides");
|
||||
RNA_def_property_range(prop, -FLT_MAX, FLT_MAX);
|
||||
RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 3);
|
||||
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, "rna_ImaPaint_viewport_update");
|
||||
}
|
||||
|
||||
static void rna_def_gpencil_sculpt(BlenderRNA *brna)
|
||||
{
|
||||
static const EnumPropertyItem prop_direction_items[] = {
|
||||
@@ -1230,6 +1328,11 @@ static void rna_def_gpencil_sculpt(BlenderRNA *brna)
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_ui_text(prop, "Brush", "");
|
||||
|
||||
prop = RNA_def_property(srna, "guide", PROP_POINTER, PROP_NONE);
|
||||
RNA_def_property_struct_type(prop, "GPencilSculptGuide");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_ui_text(prop, "Guide", "");
|
||||
|
||||
prop = RNA_def_property(srna, "use_select_mask", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_SCULPT_SETT_FLAG_SELECT_MASK);
|
||||
RNA_def_property_ui_text(prop, "Selection Mask", "Only sculpt selected stroke points");
|
||||
@@ -1299,6 +1402,14 @@ static void rna_def_gpencil_sculpt(BlenderRNA *brna)
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
|
||||
|
||||
/* threshold for cutter */
|
||||
prop = RNA_def_property(srna, "intersection_threshold", PROP_FLOAT, PROP_NONE);
|
||||
RNA_def_property_float_sdna(prop, NULL, "isect_threshold");
|
||||
RNA_def_property_range(prop, 0.0f, 10.0f);
|
||||
RNA_def_property_float_default(prop, 0.1f);
|
||||
RNA_def_property_ui_text(prop, "Threshold", "Threshold for stroke intersections");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
|
||||
/* brush */
|
||||
srna = RNA_def_struct(brna, "GPencilSculptBrush", NULL);
|
||||
RNA_def_struct_sdna(srna, "GP_Sculpt_Data");
|
||||
@@ -1383,7 +1494,6 @@ static void rna_def_gpencil_sculpt(BlenderRNA *brna)
|
||||
RNA_def_property_boolean_default(prop, true);
|
||||
RNA_def_property_ui_text(prop, "Enable Cursor", "Enable cursor on screen");
|
||||
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
|
||||
|
||||
}
|
||||
|
||||
void RNA_def_sculpt_paint(BlenderRNA *brna)
|
||||
@@ -1399,6 +1509,7 @@ void RNA_def_sculpt_paint(BlenderRNA *brna)
|
||||
rna_def_vertex_paint(brna);
|
||||
rna_def_image_paint(brna);
|
||||
rna_def_particle_edit(brna);
|
||||
rna_def_gpencil_guides(brna);
|
||||
rna_def_gpencil_sculpt(brna);
|
||||
RNA_define_animate_sdna(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user