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:
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 433d75706bb..2400069a49a 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -334,6 +334,8 @@ typedef struct BevelModifierData {
/* if the MOD_BEVEL_ANGLE is set, this will be how "sharp" an edge must be before it gets beveled */
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;
char defgrp_name[64];
} BevelModifierData;
@@ -371,6 +373,12 @@ enum {
MOD_BEVEL_MARK_SHARP = (1 << 1),
};
+/* BevelModifierData->hnmode */
+enum {
+ MOD_BEVEL_HN_FACE,
+ MOD_BEVEL_HN_ADJ,
+};
+
typedef struct SmokeModifierData {
ModifierData modifier;