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:
authorBastien Montagne <b.mont29@gmail.com>2020-03-03 20:41:50 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-03-03 20:41:50 +0300
commit059f3c1a7eb8a48aa06467e19cce4daa29091c1a (patch)
tree1fd631a590bcf0ea14865927c21491559c35e783 /source/blender/makesdna/DNA_modifier_types.h
parent2841b2be3949b7592b50cd2ebd03b9b32a5f2058 (diff)
Modifiers: Wave add invert vgroup option
Adds the invert vgroup option to the Wave modifier. Differential Revision: https://developer.blender.org/D6893
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 572a9fd76ba..36d21b28b1f 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -673,7 +673,7 @@ typedef struct WaveModifierData {
/* WaveModifierData.flag */
enum {
- /* And what bout (1 << 0) flag? ;) */
+ MOD_WAVE_INVERT_VGROUP = (1 << 0),
MOD_WAVE_X = (1 << 1),
MOD_WAVE_Y = (1 << 2),
MOD_WAVE_CYCL = (1 << 3),