Revert part of last commit,
RNA is low level data access, setting mesh values shouldn't change draw options. Also its redundant to name attrs Face.freestyle_face_mark, removed edge/face from attr names
This commit is contained in:
@@ -759,11 +759,6 @@ static void rna_MEdge_freestyle_edge_mark_set(PointerRNA *ptr, int value)
|
||||
|
||||
if (!fed) {
|
||||
fed = CustomData_add_layer(&me->edata, CD_FREESTYLE_EDGE, CD_CALLOC, NULL, me->totedge);
|
||||
|
||||
/* auto-enable Freestyle edge mark drawing */
|
||||
if (value) {
|
||||
me->drawflag |= ME_DRAW_FREESTYLE_EDGE;
|
||||
}
|
||||
}
|
||||
if (value) {
|
||||
fed->flag |= FREESTYLE_EDGE_MARK;
|
||||
@@ -790,11 +785,6 @@ static void rna_MPoly_freestyle_face_mark_set(PointerRNA *ptr, int value)
|
||||
|
||||
if (!ffa) {
|
||||
ffa = CustomData_add_layer(&me->pdata, CD_FREESTYLE_FACE, CD_CALLOC, NULL, me->totpoly);
|
||||
|
||||
/* auto-enable Freestyle face mark drawing */
|
||||
if (value) {
|
||||
me->drawflag |= ME_DRAW_FREESTYLE_FACE;
|
||||
}
|
||||
}
|
||||
if (value) {
|
||||
ffa->flag |= FREESTYLE_FACE_MARK;
|
||||
@@ -1870,7 +1860,7 @@ static void rna_def_medge(BlenderRNA *brna)
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", ME_LOOSEEDGE);
|
||||
RNA_def_property_ui_text(prop, "Loose", "Loose edge");
|
||||
|
||||
prop = RNA_def_property(srna, "freestyle_edge_mark", PROP_BOOLEAN, PROP_NONE);
|
||||
prop = RNA_def_property(srna, "freestyle_mark", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_funcs(prop, "rna_MEdge_freestyle_edge_mark_get", "rna_MEdge_freestyle_edge_mark_set");
|
||||
RNA_def_property_ui_text(prop, "Freestyle Edge Mark", "Edge mark for Freestyle line rendering");
|
||||
RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
|
||||
@@ -2074,7 +2064,7 @@ static void rna_def_mpolygon(BlenderRNA *brna)
|
||||
RNA_def_property_ui_text(prop, "Smooth", "");
|
||||
RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
|
||||
|
||||
prop = RNA_def_property(srna, "freestyle_face_mark", PROP_BOOLEAN, PROP_NONE);
|
||||
prop = RNA_def_property(srna, "freestyle_mark", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_funcs(prop, "rna_MPoly_freestyle_face_mark_get", "rna_MPoly_freestyle_face_mark_set");
|
||||
RNA_def_property_ui_text(prop, "Freestyle Face Mark", "Face mark for Freestyle line rendering");
|
||||
RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
|
||||
|
||||
Reference in New Issue
Block a user