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-22 23:16:42 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-06-22 23:16:42 +0300
commit1757b381790cd490e14b7ff7b6c4c84e4f1132e9 (patch)
treec68775bf554219a74ec4e427f1a2d7add1c20e64 /source/blender/editors/mesh/editmesh_bevel.c
parent0f66fe5732d7b6260b39e7aef9e406783c20b796 (diff)
Added UI for harden normals and normal control in bevel modifier
Diffstat (limited to 'source/blender/editors/mesh/editmesh_bevel.c')
-rw-r--r--source/blender/editors/mesh/editmesh_bevel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_bevel.c b/source/blender/editors/mesh/editmesh_bevel.c
index 1daf020dc7b..40be91aada1 100644
--- a/source/blender/editors/mesh/editmesh_bevel.c
+++ b/source/blender/editors/mesh/editmesh_bevel.c
@@ -752,6 +752,7 @@ void MESH_OT_bevel(wmOperatorType *ot)
};
static EnumPropertyItem harden_normals_items[] = {
+ { BEVEL_HN_NONE, "HN_NONE", 0, "Off", "Do not use Harden Normals" },
{ BEVEL_HN_FACE, "HN_FACE", 0, "Face Area", "Use faces as weight" },
{ BEVEL_HN_ADJ, "HN_ADJ", 0, "Vertex average", "Use adjacent vertices as weight" },
{ 0, NULL, 0, NULL, NULL },