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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-09-16 18:45:19 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-09-16 18:50:28 +0400
commitc793042577a036f7668afc5bf31f42e4ad97dad1 (patch)
treeaaca5c68b84d1eaf8b064e05397ea03088a98733 /source/blender
parente6828a71d7a5c0581c5f404b3ff98a523de998dc (diff)
Fix T41840: bpy.context.object.collision.thickness_inner has no effect on cloth.
Only change the tip to stress that, in fact, cloth sim does not use inner thickness at all, only outer one, through the Collision modifier, afaik.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 84eb94cfef4..8da869417ff 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -957,7 +957,7 @@ static void rna_def_collision(BlenderRNA *brna)
prop = RNA_def_property(srna, "thickness_inner", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "pdef_sbift");
RNA_def_property_range(prop, 0.001f, 1.0f);
- RNA_def_property_ui_text(prop, "Inner Thickness", "Inner face thickness");
+ RNA_def_property_ui_text(prop, "Inner Thickness", "Inner face thickness (only used by softbodies)");
RNA_def_property_update(prop, 0, "rna_CollisionSettings_update");
prop = RNA_def_property(srna, "thickness_outer", PROP_FLOAT, PROP_NONE);