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-03 14:01:13 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2020-02-03 14:05:04 +0300
commit808fa22a7ad8f954bda35dd07776154a24b884fe (patch)
treefabf50ebe5e1baac9d5846782914f30c5448de6f /source/blender/makesdna/DNA_modifier_types.h
parenta8ea1ea1b7d5817bf37387f6804bbaad1adb2cba (diff)
Warp Modifier add invert vgroup option
Adds the invert vertex weights option to the Warp Modifier. Setup in the same way as the other modifiers. Uses the existing flag char that is labeled unused. Differential Revision: https://developer.blender.org/D6720
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index a203e77ab26..39efe838bab 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1300,7 +1300,6 @@ typedef struct WarpModifierData {
char defgrp_name[64];
float strength;
float falloff_radius;
- /** Not used yet. */
char flag;
char falloff_type;
char _pad[6];
@@ -1308,6 +1307,11 @@ typedef struct WarpModifierData {
#define MOD_WARP_VOLUME_PRESERVE 1
+/* WarpModifierData->flag */
+enum {
+ MOD_WARP_INVERT_VGROUP = (1 << 0),
+};
+
typedef enum {
eWarp_Falloff_None = 0,
eWarp_Falloff_Curve = 1,