Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_scene.c
| Context not available. | |||||
| RNA_def_property_ui_text(prop, "Normal Vector", "Normal Vector used to copy, add or multiply"); | RNA_def_property_ui_text(prop, "Normal Vector", "Normal Vector used to copy, add or multiply"); | ||||
| RNA_def_property_ui_range(prop, -10000.0, 10000.0, 1, 3); | RNA_def_property_ui_range(prop, -10000.0, 10000.0, 1, 3); | ||||
| prop = RNA_def_property(srna, "box_select_through", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "box_select_through", 0); | |||||
| RNA_def_property_ui_text(prop, "Select Through", "Box select occluded elements"); | |||||
| prop = RNA_def_property(srna, "lasso_select_through", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "lasso_select_through", 0); | |||||
| RNA_def_property_ui_text(prop, "Select Through", "Lasso select occluded elements"); | |||||
| prop = RNA_def_property(srna, "circle_select_through", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "circle_select_through", 0); | |||||
| RNA_def_property_ui_text(prop, "Select Through", "Circle select occluded elements"); | |||||
| prop = RNA_def_property(srna, "box_auto_xray", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "box_auto_xray", 0); | |||||
| RNA_def_property_ui_text(prop, "Box Auto Xray", "Transparent scene display during box select"); | |||||
| prop = RNA_def_property(srna, "lasso_auto_xray", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "lasso_auto_xray", 0); | |||||
| RNA_def_property_ui_text(prop, "Lasso Auto Xray", "Transparent scene display during lasso select"); | |||||
| prop = RNA_def_property(srna, "circle_auto_xray", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "circle_auto_xray", 0); | |||||
| RNA_def_property_ui_text(prop, "Circle Auto Xray", "Transparent scene display during circle select"); | |||||
| prop = RNA_def_property(srna, "auto_xray_reset", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "auto_xray_reset", 0); | |||||
| RNA_def_property_ui_text(prop, "Auto Xray Reset", "Disables transparent scene display for auto xray"); | |||||
| prop = RNA_def_property(srna, "select_all_edges", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "select_all_edges", 0); | |||||
| RNA_def_property_ui_text(prop, "All Edges", "Select all edges that are touched by the selection area"); | |||||
| prop = RNA_def_property(srna, "fully_enclosed_faces", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "fully_enclosed_faces", 0); | |||||
| RNA_def_property_ui_text(prop, "Enclosed Faces", "Select only the faces that are fully inside the selection area"); | |||||
| prop = RNA_def_property(srna, "select_xray_facedots", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "select_xray_facedots", 1); | |||||
| RNA_def_property_ui_text(prop, "X-Ray Facedots", "In xray when facedots are on, select faces if their center is inside the selection area"); | |||||
| prop = RNA_def_property(srna, "link_box", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "link_box", 0); | |||||
| RNA_def_property_ui_text(prop, | |||||
| "Link Box", | |||||
| "Synchronize the on/off status of box select's automatic xray and " | |||||
| "select through header button with other linked selection tools"); | |||||
| prop = RNA_def_property(srna, "link_lasso", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "link_lasso", 0); | |||||
| RNA_def_property_ui_text(prop, | |||||
| "Link Lasso", | |||||
| "Synchronize the on/off status of lasso select's automatic xray and " | |||||
| "select through header button with other linked selection tools"); | |||||
| prop = RNA_def_property(srna, "link_circle", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "link_circle", 0); | |||||
| RNA_def_property_ui_text(prop, | |||||
| "Link Circle", | |||||
| "Synchronize the on/off status of circle select's automatic xray and " | |||||
| "select through header button with other linked selection tools"); | |||||
| /* Unified Paint Settings */ | /* Unified Paint Settings */ | ||||
| prop = RNA_def_property(srna, "unified_paint_settings", PROP_POINTER, PROP_NONE); | prop = RNA_def_property(srna, "unified_paint_settings", PROP_POINTER, PROP_NONE); | ||||
| RNA_def_property_flag(prop, PROP_NEVER_NULL); | RNA_def_property_flag(prop, PROP_NEVER_NULL); | ||||
| Context not available. | |||||