* More small modifier improvements by nudelZ.

* Code cleanup.
This commit is contained in:
Thomas Dinges
2009-11-20 20:40:29 +00:00
parent 86f02c1353
commit b751bc5ef2
8 changed files with 67 additions and 72 deletions

View File

@@ -1852,9 +1852,9 @@ static void rna_def_modifier_mask(BlenderRNA *brna)
RNA_def_property_string_funcs(prop, NULL, NULL, "rna_MaskModifier_vgroup_set");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop= RNA_def_property(srna, "inverse", PROP_BOOLEAN, PROP_NONE);
prop= RNA_def_property(srna, "invert", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_MASK_INV);
RNA_def_property_ui_text(prop, "Inverse", "Use vertices that are not part of region defined.");
RNA_def_property_ui_text(prop, "Invert", "Use vertices that are not part of region defined.");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
}