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:28:02 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-18 18:28:02 +0300
commitd0cc9b522dfb56e329f894d2c188bdcdfd175609 (patch)
tree6450f90a7936c92b940b572f99fbb282b7744e1a /source/blender/makesdna
parentcef4d344f948ce75a7787ad0c3915c87e1716ca1 (diff)
Modifiers: Laplacian Smooth modifier add invert vgroup option
Adds the invert vgroup option to the Laplacian Smooth modifier. Differential Revision: https://developer.blender.org/D6842
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 2c19d4655d7..98ffe7ef416 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1683,6 +1683,7 @@ enum {
MOD_LAPLACIANSMOOTH_Z = (1 << 3),
MOD_LAPLACIANSMOOTH_PRESERVE_VOLUME = (1 << 4),
MOD_LAPLACIANSMOOTH_NORMALIZED = (1 << 5),
+ MOD_LAPLACIANSMOOTH_INVERT_VGROUP = (1 << 6),
};
typedef struct CorrectiveSmoothDeltaCache {