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:
authorAndre Susano Pinto <andresusanopinto@gmail.com>2008-07-04 23:56:31 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2008-07-04 23:56:31 +0400
commit37a017b18ab2bbc8c0d59a9cccd8c4f1265a59bb (patch)
tree88a507e9c603ca5ca7dbb2eba5067936a249e7ac /source/blender/makesdna/DNA_modifier_types.h
parentad310b5087ea1605ba235f9ed4cf8292fa4294f7 (diff)
*Added vertex groups on simple deform
*Fixed a few UI things *Make SimpleDeform and Shrinkwrap to use vertexgroup_get_vertex_weight, a similar function "static float vert_weight(MDeformVert *dvert, int group)" existed on modifier.c, changed it a bit and moved into BKE_deform.h
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 74308579cf1..9e1a6ede9f9 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -523,7 +523,9 @@ typedef struct SimpleDeformModifierData {
ModifierData modifier;
struct Object *origin; /* object to control the origin of modifier space coordinates */
+ char vgroup_name[32]; /* optional vertexgroup name */
float factor[4]; /* factors to control simple deforms */
+
char mode;
char pad[7];