Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2020-09-23 19:17:14 +0300
committerHans Goudey <h.goudey@me.com>2020-09-23 19:17:14 +0300
commitbf0cefe738bd469f83255795b4df537ce1caad4b (patch)
treee36cb4289b87bebe7965dcbdb728763120133af8 /source/blender/makesrna/intern/rna_curve.c
parent51c7a854fe2ad2f1bcd0f2fe3357b6d2d4a00e32 (diff)
UI: Clarify curve geometry factor and mapping tooltips
The "bevel_factor" for curves also applies when there is no bevel and only extrusion. rB4e667ecef92f addressed this by moving the factor and mapping properties to their own subpanel, but the property descriptions still don't reflect that. This commit replaces "Bevel" with "Geometry" for this situation. The property identifiers are not changed.
Diffstat (limited to 'source/blender/makesrna/intern/rna_curve.c')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index e06d557e01e..7e4c9477c6a 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1542,18 +1542,18 @@ static void rna_def_curve(BlenderRNA *brna)
"RESOLUTION",
0,
"Resolution",
- "Map the bevel factor to the number of subdivisions of a spline (U resolution)"},
+ "Map the geometry factor to the number of subdivisions of a spline (U resolution)"},
{CU_BEVFAC_MAP_SEGMENT,
"SEGMENTS",
0,
"Segments",
- "Map the bevel factor to the length of a segment and to the number of subdivisions of a "
+ "Map the geometry factor to the length of a segment and to the number of subdivisions of a "
"segment"},
{CU_BEVFAC_MAP_SPLINE,
"SPLINE",
0,
"Spline",
- "Map the bevel factor to the length of a spline"},
+ "Map the geometry factor to the length of a spline"},
{0, NULL, 0, NULL, NULL},
};
@@ -1753,14 +1753,14 @@ static void rna_def_curve(BlenderRNA *brna)
RNA_def_property_enum_sdna(prop, NULL, "bevfac1_mapping");
RNA_def_property_enum_items(prop, bevfac_mapping_items);
RNA_def_property_ui_text(
- prop, "Start Mapping Type", "Determines how the start bevel factor is mapped to a spline");
+ prop, "Start Mapping Type", "Determine how the geometry start factor is mapped to a spline");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
prop = RNA_def_property(srna, "bevel_factor_mapping_end", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "bevfac2_mapping");
RNA_def_property_enum_items(prop, bevfac_mapping_items);
RNA_def_property_ui_text(
- prop, "End Mapping Type", "Determines how the end bevel factor is mapped to a spline");
+ prop, "End Mapping Type", "Determine how the geometry end factor is mapped to a spline");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
/* XXX - would be nice to have a better way to do this, only add for testing. */
@@ -1827,18 +1827,18 @@ static void rna_def_curve(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "bevfac1");
RNA_def_property_range(prop, 0, 1.0);
RNA_def_property_ui_text(prop,
- "Start Bevel Factor",
- "Factor that defines from where beveling of spline happens (0=from the "
- "very beginning, 1=from the very end)");
+ "Geometry Start Factor",
+ "Define where along the spline the curve geometry starts (0 for the "
+ "beginning, 1 for the end)");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
prop = RNA_def_property(srna, "bevel_factor_end", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_float_sdna(prop, NULL, "bevfac2");
RNA_def_property_range(prop, 0, 1.0);
RNA_def_property_ui_text(prop,
- "End Bevel Factor",
- "Factor that defines to where beveling of spline happens (0=to the "
- "very beginning, 1=to the very end)");
+ "Geometry End Factor",
+ "Define where along the spline the curve geometry ends (0 for the "
+ "beginning, 1 for the end)");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
prop = RNA_def_property(srna, "is_editmode", PROP_BOOLEAN, PROP_NONE);