Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 6,078 Lines • ▼ Show 20 Lines | static void rna_def_userdef_experimental(BlenderRNA *brna) | ||||
| prop = RNA_def_property(srna, "use_new_hair_type", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_new_hair_type", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_new_hair_type", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_new_hair_type", 1); | ||||
| RNA_def_property_ui_text(prop, "New Hair Type", "Enable the new hair type in the ui"); | RNA_def_property_ui_text(prop, "New Hair Type", "Enable the new hair type in the ui"); | ||||
| prop = RNA_def_property(srna, "use_cycles_debug", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_cycles_debug", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_cycles_debug", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_cycles_debug", 1); | ||||
| RNA_def_property_ui_text(prop, "Cycles Debug", "Enable Cycles debugging options for developers"); | RNA_def_property_ui_text(prop, "Cycles Debug", "Enable Cycles debugging options for developers"); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_update"); | RNA_def_property_update(prop, 0, "rna_userdef_update"); | ||||
| prop = RNA_def_property(srna, "use_sculpt_vertex_colors", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_sculpt_vertex_colors", 1); | |||||
| RNA_def_property_ui_text(prop, "Sculpt Vertex Colors", "Use the new Vertex Painting system"); | |||||
| } | } | ||||
| static void rna_def_userdef_addon_collection(BlenderRNA *brna, PropertyRNA *cprop) | static void rna_def_userdef_addon_collection(BlenderRNA *brna, PropertyRNA *cprop) | ||||
| { | { | ||||
| StructRNA *srna; | StructRNA *srna; | ||||
| FunctionRNA *func; | FunctionRNA *func; | ||||
| PropertyRNA *parm; | PropertyRNA *parm; | ||||
| ▲ Show 20 Lines • Show All 202 Lines • Show Last 20 Lines | |||||