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,420 Lines • ▼ Show 20 Lines | static void rna_def_userdef_experimental(BlenderRNA *brna) | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_override_templates", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_override_templates", 1); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Override Templates", "Enable library override template in the python API"); | prop, "Override Templates", "Enable library override template in the python API"); | ||||
| prop = RNA_def_property(srna, "enable_eevee_next", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "enable_eevee_next", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "enable_eevee_next", 1); | RNA_def_property_boolean_sdna(prop, NULL, "enable_eevee_next", 1); | ||||
| RNA_def_property_ui_text(prop, "EEVEE Next", "Enable the new EEVEE codebase, requires restart"); | RNA_def_property_ui_text(prop, "EEVEE Next", "Enable the new EEVEE codebase, requires restart"); | ||||
| prop = RNA_def_property(srna, "enable_workbench_next", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "enable_workbench_next", 1); | |||||
| RNA_def_property_ui_text(prop, | |||||
| "Workbench Next", | |||||
| "Enable the new Workbench codebase, requires " | |||||
| "restart"); | |||||
| prop = RNA_def_property(srna, "use_viewport_debug", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_viewport_debug", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_viewport_debug", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_viewport_debug", 1); | ||||
| RNA_def_property_ui_text(prop, | RNA_def_property_ui_text(prop, | ||||
| "Viewport Debug", | "Viewport Debug", | ||||
| "Enable viewport debugging options for developers in the overlays " | "Enable viewport debugging options for developers in the overlays " | ||||
| "pop-over"); | "pop-over"); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_ui_update"); | RNA_def_property_update(prop, 0, "rna_userdef_ui_update"); | ||||
| ▲ Show 20 Lines • Show All 223 Lines • Show Last 20 Lines | |||||