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-11-17 00:58:49 +0300
committerTon Roosendaal <ton@blender.org>2005-11-17 00:58:49 +0300
commitbefd6f3150b5d2bb6d0925f1fc5ce00edbbb104a (patch)
tree70efd622fbea4d98abec16c8733241373bd3d4ae /source/blender/src/editview.c
parent7a60679c7508c3701e16f9243c73477a666654ce (diff)
Special Orange request; support for SoftBody Goal weights for Lattices.
Animating detailed clothes with softbody becomes messy, so now we'll try it this way. :) It simply uses the W (weight) value, as already available in each Lattice Point. Only had to make it editable; - NKey panel - or press W in editmode Further there's a minimalistic W button in the softbody Panel!
Diffstat (limited to 'source/blender/src/editview.c')
-rw-r--r--source/blender/src/editview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index c1da247120a..2376fe93619 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -1462,7 +1462,7 @@ static void do_lattice_box_select__doSelect(void *userData, BPoint *bp, int x, i
}
static void do_lattice_box_select(rcti *rect, int select)
{
- struct { rcti *rect; short select, pass, done; } data;
+ struct { rcti *rect; int select, pass, done; } data;
data.rect = rect;
data.select = select;