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,415 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, "use_geometry_nodes_legacy", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_geometry_nodes_legacy", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_geometry_nodes_legacy", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_geometry_nodes_legacy", 1); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Geometry Nodes Legacy", "Enable legacy geometry nodes in the menu"); | prop, "Geometry Nodes Legacy", "Enable legacy geometry nodes in the menu"); | ||||
| prop = RNA_def_property(srna, "use_navigate_while_transform", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_ui_text( | |||||
| prop, "Navigate While Transform", "Allow Navigation While Transforming"); | |||||
| } | } | ||||
| 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 | |||||