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:
authorRohan Rathi <rohanrathi08@gmail.com>2018-06-19 16:57:08 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-06-19 16:57:08 +0300
commitdd752476b97aa3b35d1359422ca42e33d99ac851 (patch)
treef242f8747e50598473176a9403d96bd59b39c9a3 /source/blender/makesdna/DNA_modifier_types.h
parente5880eb1ffdccc3295ca6a27fec8bb55fd20c27d (diff)
Added face strength in bevel modifier
The selected face strength (Weak/Medium/High) can be used by the WN Modifier to determine influence of current face in
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 2400069a49a..3cf1d9f30f2 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -335,7 +335,7 @@ typedef struct BevelModifierData {
float bevel_angle;
/* if the MOD_BEVEL_VWEIGHT option is set, this will be the name of the vert group, MAX_VGROUP_NAME */
int hnmode;
- float strength;
+ float hn_strength;
char defgrp_name[64];
} BevelModifierData;
@@ -357,6 +357,7 @@ enum {
/* MOD_BEVEL_DIST = (1 << 12), */ /* same as above */
MOD_BEVEL_OVERLAP_OK = (1 << 13),
MOD_BEVEL_EVEN_WIDTHS = (1 << 14),
+ MOD_BEVEL_SET_WN_STR = (1 << 15),
};
/* BevelModifierData->val_flags (not used as flags any more) */