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:
authorishbosamiya <ishbosamiya@gmail.com>2021-09-05 18:05:07 +0300
committerishbosamiya <ishbosamiya@gmail.com>2021-09-05 18:05:07 +0300
commit7a0683cf0575f4a04ce2b33acdc916d7f7d849c9 (patch)
tree4a3e25ab637b7f42b1d9ae3fd06a0673f95861ca /source/blender/makesrna/intern/rna_modifier.c
parentfd9b3419eac7b2a63a8d835564dc3359b7735291 (diff)
adaptive_cloth: parameter name from `size_min` to `edge_length_min`
Diffstat (limited to 'source/blender/makesrna/intern/rna_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 87b839b62c5..8b7455f1308 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -7291,10 +7291,10 @@ static void rna_def_modifier_adaptive_remesh(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Force Split for Sewing", "Force splitting of edge for sewing");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
- prop = RNA_def_property(srna, "size_min", PROP_FLOAT, PROP_NONE);
- RNA_def_property_float_sdna(prop, NULL, "size_min");
+ prop = RNA_def_property(srna, "edge_length_min", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "edge_length_min");
RNA_def_property_ui_range(prop, 0.0001f, 2.0f, 0.005f, 4);
- RNA_def_property_ui_text(prop, "Remeshing Size Min", "");
+ RNA_def_property_ui_text(prop, "Remeshing Minimum Edge Length", "");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
RNA_define_lib_overridable(false);