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:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-02-27 06:23:17 +0300
committerDaniel Genrich <daniel.genrich@gmx.net>2008-02-27 06:23:17 +0300
commit7d310f4e5c9059a7e734d852424915e8aac7319e (patch)
tree12dbf2686141232fb66ba7f89d8e9cf58b9c760e /source/blender/blenkernel/intern/cloth.c
parent0e54475adaafa4c6db738e7ce8f48a86a375397b (diff)
Cloth: fixed completely useless/wrong friction force; changed some initial settings
Diffstat (limited to 'source/blender/blenkernel/intern/cloth.c')
-rw-r--r--source/blender/blenkernel/intern/cloth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/cloth.c b/source/blender/blenkernel/intern/cloth.c
index 0e97a5fe9ef..b1849f8b693 100644
--- a/source/blender/blenkernel/intern/cloth.c
+++ b/source/blender/blenkernel/intern/cloth.c
@@ -184,7 +184,7 @@ void cloth_init ( ClothModifierData *clmd )
clmd->sim_parms->maxgoal = 1.0f;
clmd->sim_parms->mingoal = 0.0f;
clmd->sim_parms->defgoal = 0.0f;
- clmd->sim_parms->goalspring = 10.0f;
+ clmd->sim_parms->goalspring = 1.0f;
clmd->sim_parms->goalfrict = 5.0f;
}