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,154 Lines • ▼ Show 20 Lines | static void rna_def_userdef_experimental(BlenderRNA *brna) | ||||
| prop = RNA_def_property(srna, "use_undo_legacy", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_undo_legacy", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_undo_legacy", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_undo_legacy", 1); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| "Undo Legacy", | "Undo Legacy", | ||||
| "Use legacy undo (slower than the new default one, but may be more stable in some cases)"); | "Use legacy undo (slower than the new default one, but may be more stable in some cases)"); | ||||
| prop = RNA_def_property(srna, "use_new_point_cloud_type", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_new_point_cloud_type", 1); | |||||
| RNA_def_property_ui_text( | |||||
| prop, "New Point Cloud Type", "Enable the new point cloud type in the ui"); | |||||
| 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"); | ||||
| ▲ Show 20 Lines • Show All 229 Lines • Show Last 20 Lines | |||||