Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
| Context not available. | |||||
| RNA_def_property_array(prop, 3); | RNA_def_property_array(prop, 3); | ||||
| RNA_def_property_ui_text(prop, "Sculpt/Paint Overlay Color", "Color of texture overlay"); | RNA_def_property_ui_text(prop, "Sculpt/Paint Overlay Color", "Color of texture overlay"); | ||||
| /* force not from scuplt mode enter to mode */ | |||||
| prop = RNA_def_property(srna, "not_enter_edit_mode", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_FORCE_NOT_ENTER_EDITMODE); | |||||
| RNA_def_property_ui_text(prop, "Not from scuplt mode Enter Edit Mode", "Not Enter Edit mode When in Scuplt mode"); | |||||
| /* duplication linking */ | /* duplication linking */ | ||||
| prop = RNA_def_property(srna, "use_duplicate_mesh", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_duplicate_mesh", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_MESH); | RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_MESH); | ||||
| Context not available. | |||||