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-06 13:52:24 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-06 13:54:55 +0300
commitdd00e8ecd642cafc6294ec7f0f31c5e0e0fe9870 (patch)
tree4a3f9cb7a409c8d00846588afc715253c4ccaa34 /source/blender/makesdna/DNA_modifier_types.h
parent8768cd6a6a98a710ed2b6d8b257c43dd0e6e58ee (diff)
Smooth Modifier add invert vgroup option
Adds the invert vertex group option to the smooth modifier. Setup same way as previous modifiers. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D6745
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-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 135ddd8f62f..fcf41481ade 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -610,6 +610,7 @@ typedef struct SmoothModifierData {
/* Smooth modifier flags */
enum {
+ MOD_SMOOTH_INVERT_VGROUP = (1 << 0),
MOD_SMOOTH_X = (1 << 1),
MOD_SMOOTH_Y = (1 << 2),
MOD_SMOOTH_Z = (1 << 3),