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/makesdna
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/makesdna')
-rw-r--r--source/blender/makesdna/DNA_object_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 13ea7def290..fb11938c442 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -112,7 +112,7 @@ typedef struct SoftBody {
float inspring; /* softbody inner springs */
float infrict; /* softbody inner springs friction */
- float pad;
+ float defgoal; /* default goal for vertices without vgroup */
} SoftBody;