Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
| Show First 20 Lines • Show All 992 Lines • ▼ Show 20 Lines | |||||
| prop, "Duplicate Light Probe", "Causes light probe data to be duplicated with the object"); | prop, "Duplicate Light Probe", "Causes light probe data to be duplicated with the object"); | ||||
| prop = RNA_def_property(srna, "use_duplicate_grease_pencil", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_duplicate_grease_pencil", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_GPENCIL); | RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_GPENCIL); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Duplicate GPencil", "Causes grease pencil data to be duplicated with the object"); | prop, "Duplicate GPencil", "Causes grease pencil data to be duplicated with the object"); | ||||
| prop = RNA_def_property(srna, "use_duplicate_hair", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_duplicate_hair", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_HAIR); | RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_CURVES); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Duplicate Hair", "Causes hair data to be duplicated with the object"); | prop, "Duplicate Hair", "Causes hair data to be duplicated with the object"); | ||||
| prop = RNA_def_property(srna, "use_duplicate_pointcloud", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_duplicate_pointcloud", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_POINTCLOUD); | RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_POINTCLOUD); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, "Duplicate Point Cloud", "Causes point cloud data to be duplicated with the object"); | prop, "Duplicate Point Cloud", "Causes point cloud data to be duplicated with the object"); | ||||
| ▲ Show 20 Lines • Show All 1,089 Lines • ▼ Show 20 Lines | |||||
| prop = RNA_def_property(srna, "use_full_frame_compositor", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_full_frame_compositor", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "use_full_frame_compositor", 1); | RNA_def_property_boolean_sdna(prop, NULL, "use_full_frame_compositor", 1); | ||||
| RNA_def_property_ui_text(prop, | RNA_def_property_ui_text(prop, | ||||
| "Full Frame Compositor", | "Full Frame Compositor", | ||||
| "Enable compositor full frame execution mode option (no tiling, " | "Enable compositor full frame execution mode option (no tiling, " | ||||
| "reduces execution time and memory usage)"); | "reduces execution time and memory usage)"); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_update"); | RNA_def_property_update(prop, 0, "rna_userdef_update"); | ||||
| prop = RNA_def_property(srna, "use_new_hair_type", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_new_curves_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_curves_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 Curves Type", "Enable the new curves data 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); | 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_boolean_sdna(prop, NULL, "use_sculpt_vertex_colors", 1); | ||||
| ▲ Show 20 Lines • Show All 254 Lines • Show Last 20 Lines | |||||