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:
authorCody Winchester <CodyWinch>2020-02-18 18:54:00 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-18 18:57:09 +0300
commite30d8f45ef13c6258eea5edd33898a5bf9af4e92 (patch)
treee62e0fac64ea7213bdc61577547eeb7501b067c7 /source/blender/makesdna
parent19e63bb51e8b8467872c4c7fc001a65905d33142 (diff)
Modifiers: Laplacian Deform modifier add invert vgroup option
Adds the invert vgroup option to the Laplacian Deform modifier. Differential Revision: https://developer.blender.org/D6843
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 98ffe7ef416..20ea798a2fa 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1843,6 +1843,7 @@ typedef struct LaplacianDeformModifierData {
/* Laplacian Deform modifier flags */
enum {
MOD_LAPLACIANDEFORM_BIND = 1 << 0,
+ MOD_LAPLACIANDEFORM_INVERT_VGROUP = 1 << 1,
};
/* many of these options match 'solidify' */