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,366 Lines • ▼ Show 20 Lines | static void rna_def_userdef_experimental(BlenderRNA *brna) | ||||
| prop = RNA_def_property(srna, "use_override_templates", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_override_templates", PROP_BOOLEAN, PROP_NONE); | ||||
| 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, "use_viewport_debug", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_viewport_debug", 1); | |||||
| RNA_def_property_ui_text(prop, | |||||
| "Viewport Debug", | |||||
| "Enable viewport debugging options for developpers in the overlays " | |||||
| "pop-over"); | |||||
| RNA_def_property_update(prop, 0, "rna_userdef_ui_update"); | |||||
| } | } | ||||
| 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 209 Lines • Show Last 20 Lines | |||||