Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 3,514 Lines • ▼ Show 20 Lines | RNA_def_property_ui_text( | ||||
| "Show Weight Contours", | "Show Weight Contours", | ||||
| "Show contour lines formed by points with the same interpolated weight"); | "Show contour lines formed by points with the same interpolated weight"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | ||||
| prop = RNA_def_property(srna, "show_weight", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_weight", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_WEIGHT); | RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_WEIGHT); | ||||
| RNA_def_property_ui_text(prop, "Show Weights", "Display weights in editmode"); | RNA_def_property_ui_text(prop, "Show Weights", "Display weights in editmode"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | ||||
| prop = RNA_def_property(srna, "show_occlude_wire", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_retopology", PROP_BOOLEAN, PROP_NONE); | ||||
jbakker: Should we use a different name in the API? | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_OCCLUDE_WIRE); | RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_RETOPOLOGY); | ||||
| RNA_def_property_ui_text(prop, "Hidden Wire", "Use hidden wireframe display"); | RNA_def_property_ui_text(prop, "Retopology", "Display retopology overlay"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | ||||
| prop = RNA_def_property(srna, "show_face_normals", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_face_normals", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_FACE_NORMALS); | RNA_def_property_boolean_sdna(prop, NULL, "overlay.edit_flag", V3D_OVERLAY_EDIT_FACE_NORMALS); | ||||
| RNA_def_property_ui_text(prop, "Display Normals", "Display face normals as lines"); | RNA_def_property_ui_text(prop, "Display Normals", "Display face normals as lines"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL); | ||||
| prop = RNA_def_property(srna, "show_vertex_normals", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_vertex_normals", PROP_BOOLEAN, PROP_NONE); | ||||
| ▲ Show 20 Lines • Show All 2,861 Lines • Show Last 20 Lines | |||||
Should we use a different name in the API?