[Bf-blender-cvs] [6b5e4ad5899] master: Bevel Modifier: Use angle limit method by default

Hans Goudey noreply at git.blender.org
Wed Jan 13 01:55:36 CET 2021


Commit: 6b5e4ad5899d87a183c4a3d5eb129f12d1aecd5c
Author: Hans Goudey
Date:   Tue Jan 12 18:55:27 2021 -0600
Branches: master
https://developer.blender.org/rB6b5e4ad5899d87a183c4a3d5eb129f12d1aecd5c

Bevel Modifier: Use angle limit method by default

This right click select post outlines the reasons to make "Angle" the
default limit method: https://blender.community/c/rightclickselect/BVfbbc/
In short: Beveling every single edge rather than just sharp edges is
rarely the desired behavior, and the placement of the property in the UI
makes it easy to see the property's importance and toggle it.

Differential Revision: https://developer.blender.org/D8961

===================================================================

M	source/blender/makesdna/DNA_modifier_defaults.h

===================================================================

diff --git a/source/blender/makesdna/DNA_modifier_defaults.h b/source/blender/makesdna/DNA_modifier_defaults.h
index a5466641be4..8601dcf76ac 100644
--- a/source/blender/makesdna/DNA_modifier_defaults.h
+++ b/source/blender/makesdna/DNA_modifier_defaults.h
@@ -56,7 +56,7 @@
     .flags = 0, \
     .val_flags = MOD_BEVEL_AMT_OFFSET, \
     .profile_type = MOD_BEVEL_PROFILE_SUPERELLIPSE, \
-    .lim_flags = 0, \
+    .lim_flags = MOD_BEVEL_ANGLE, \
     .e_flags = 0, \
     .mat = -1, \
     .edge_flags = 0, \



More information about the Bf-blender-cvs mailing list