UI: Do not use term 'Subsurf'

So not to be confused with subsurf scatter

Differential Revision: https://developer.blender.org/D8005
This commit is contained in:
Aaron Carlisle 2020-06-14 19:06:37 -04:00
parent 4155f8dc21
commit caa1b16acc
8 changed files with 8 additions and 8 deletions

View File

@ -569,7 +569,7 @@ class SpellChecker:
"shrinkwrap",
"softbody",
"stucci",
"subsurf",
"subdiv",
"subtype",
"sunsky",
"tessface", "tessfaces",

View File

@ -237,7 +237,7 @@ class SubdivisionSet(Operator):
)
relative: BoolProperty(
name="Relative",
description=("Apply the subsurf level as an offset "
description=("Apply the subdivision surface level as an offset "
"relative to the current level"),
default=False,
)

View File

@ -421,7 +421,7 @@ void WM_OT_alembic_export(wmOperatorType *ot)
"Export meshes using Alembic's subdivision schema");
RNA_def_boolean(
ot->srna, "apply_subdiv", 0, "Apply Subsurf", "Export subdivision surfaces as meshes");
ot->srna, "apply_subdiv", 0, "Apply Subdivision Surface", "Export subdivision surfaces as meshes");
RNA_def_boolean(ot->srna,
"curves_as_mesh",

View File

@ -7241,7 +7241,7 @@ void MESH_OT_wireframe(wmOperatorType *ot)
RNA_def_property_ui_range(prop, 0.0, 1.0, 0.01, 4);
RNA_def_float_distance(ot->srna, "offset", 0.01f, 0.0f, 1e4f, "Offset", "", 0.0f, 10.0f);
RNA_def_boolean(
ot->srna, "use_crease", false, "Crease", "Crease hub edges for improved subsurf");
ot->srna, "use_crease", false, "Crease", "Crease hub edges for an improved subdivision surface");
prop = RNA_def_float(
ot->srna, "crease_weight", 0.01f, 0.0f, 1e3f, "Crease weight", "", 0.0f, 1.0f);
RNA_def_property_ui_range(prop, 0.0, 1.0, 0.1, 2);

View File

@ -76,7 +76,7 @@ static const EnumPropertyItem DT_layer_items[] = {
{0, "", 0, "Edge Data", ""},
{DT_TYPE_SHARP_EDGE, "SHARP_EDGE", 0, "Sharp", "Transfer sharp mark"},
{DT_TYPE_SEAM, "SEAM", 0, "UV Seam", "Transfer UV seam mark"},
{DT_TYPE_CREASE, "CREASE", 0, "Subsurf Crease", "Transfer crease values"},
{DT_TYPE_CREASE, "CREASE", 0, "Subdivision Crease", "Transfer crease values"},
{DT_TYPE_BWEIGHT_EDGE, "BEVEL_WEIGHT_EDGE", 0, "Bevel Weight", "Transfer bevel weights"},
{DT_TYPE_FREESTYLE_EDGE,
"FREESTYLE_EDGE",

View File

@ -1824,7 +1824,7 @@ void UV_OT_unwrap(wmOperatorType *ot)
ot->srna,
"use_subsurf_data",
0,
"Use Subsurf Modifier",
"Use Subdivision Surface",
"Map UVs taking vertex position after Subdivision Surface modifier has been applied");
RNA_def_float_factor(
ot->srna, "margin", 0.001f, 0.0f, 1.0f, "Margin", "Space between islands", 0.0f, 1.0f);

View File

@ -1742,7 +1742,7 @@ static void rna_def_modifier_subsurf(BlenderRNA *brna)
PropertyRNA *prop;
srna = RNA_def_struct(brna, "SubsurfModifier", "Modifier");
RNA_def_struct_ui_text(srna, "Subsurf Modifier", "Subdivision surface modifier");
RNA_def_struct_ui_text(srna, "Subdivision Surface Modifier", "Subdivision surface modifier");
RNA_def_struct_sdna(srna, "SubsurfModifierData");
RNA_def_struct_ui_icon(srna, ICON_MOD_SUBSURF);

View File

@ -98,7 +98,7 @@ PyDoc_STRVAR(
PyDoc_STRVAR(bpy_bmlayeraccess_collection__bevel_weight_doc,
"Bevel weight float in [0 - 1].\n\n:type: :class:`BMLayerCollection`");
PyDoc_STRVAR(bpy_bmlayeraccess_collection__crease_doc,
"Edge crease for subsurf - float in [0 - 1].\n\n:type: :class:`BMLayerCollection`");
"Edge crease for subdivision surface - float in [0 - 1].\n\n:type: :class:`BMLayerCollection`");
PyDoc_STRVAR(
bpy_bmlayeraccess_collection__uv_doc,
"Accessor for :class:`BMLoopUV` UV (as a 2D Vector).\n\ntype: :class:`BMLayerCollection`");