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-07-11 20:06:44 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-07-11 20:06:44 +0300
commit75149b429f1567e3358750a62eadeb1c32fef032 (patch)
treef8af95fc11f32880ac911e040f49c5a643b2d4f7 /source/blender/modifiers/intern/MOD_bevel.c
parent962f89d487da41107d7d1b1ccf7e720767359cd0 (diff)
Added support for beveling curves
Diffstat (limited to 'source/blender/modifiers/intern/MOD_bevel.c')
-rw-r--r--source/blender/modifiers/intern/MOD_bevel.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_bevel.c b/source/blender/modifiers/intern/MOD_bevel.c
index 3418922e812..f19443f2d5c 100644
--- a/source/blender/modifiers/intern/MOD_bevel.c
+++ b/source/blender/modifiers/intern/MOD_bevel.c
@@ -442,8 +442,9 @@ ModifierTypeInfo modifierType_Bevel = {
/* type */ eModifierTypeType_Constructive,
/* flags */ eModifierTypeFlag_AcceptsMesh |
eModifierTypeFlag_SupportsEditmode |
- eModifierTypeFlag_EnableInEditmode,
-
+ eModifierTypeFlag_EnableInEditmode |
+ eModifierTypeFlag_AcceptsCVs,
+
/* copyData */ modifier_copyData_generic,
/* deformVerts_DM */ NULL,