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:
authorTon Roosendaal <ton@blender.org>2005-04-02 23:52:32 +0400
committerTon Roosendaal <ton@blender.org>2005-04-02 23:52:32 +0400
commit90df59630eaf886977e8aea2691cae7d365d9fe4 (patch)
treecd0d5d587655acc9955517b5a5ca9b47595bb8dd /source/blender/blenloader/intern
parentfc663edf7278f5b2a7dcde9845be0d17a3dc6926 (diff)
More softbody goodness;
- Added Softbody effect for Lattices (not too useful yet without vertexgroups though) - Added default vertex "goal" value + button, to be assigned when no vertexgroup exists (or vertex isn't in the group) - Made softmin and softmax work as documented (defining min and max range) - made changes in buttons send 'update' signal to softbody And: - added Nkey Properties to show lattice coordinates
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index d10d970e0d4..b2fce9edfe6 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4677,6 +4677,7 @@ static void do_versions(Main *main)
sb->maxgoal= ob->sb_maxgoal;
sb->mediafrict= ob->sb_mediafrict;
sb->rklimit= ob->softtime;
+ sb->defgoal= 0.7;
ob->softflag |= OB_SB_GOAL|OB_SB_EDGES;
}