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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-06 12:44:34 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-06 12:44:34 +0300
commite2504c2ff1aa3bfb2df446e007ee9fae0993a9ee (patch)
tree57db6b729c9b42cce7993746c6e0d611af7883ab /source/blender/makesdna
parentf1c6a69aad1f94f406cfa5172b7ddb941e80649d (diff)
Mesh Deform Modifier
==================== Added a button to invert the vertex group influence, to make blending between mdef and armature deform easier.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index c8dcba4fae7..42016ad1c16 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -348,6 +348,8 @@ typedef struct BooleanModifierData {
int operation, pad;
} BooleanModifierData;
+#define MOD_MDEF_INVERT_VGROUP (1<<0)
+
typedef struct MeshDeformModifierData {
ModifierData modifier;
@@ -356,7 +358,7 @@ typedef struct MeshDeformModifierData {
float *bindweights, *bindcos; /* computed binding weights */
short gridsize, needbind;
- int pad;
+ short flag, pad;
int totvert, totcagevert;
} MeshDeformModifierData;