Skip to content

Commit

Permalink
fix: ensure faux bevel weighted normal weight is set to 100% to avoid…
Browse files Browse the repository at this point in the history
… face-level artifacts
  • Loading branch information
tristan-hm committed Jan 22, 2022
1 parent 789f471 commit 0849dfd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion faux-bevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ def add_bevel_modifier(self, context):


def add_weighted_normal_modifer(self, context):
weighted = context.object.modifiers.new("ND — Weighted Normal", 'WEIGHTED_NORMAL')
wn = context.object.modifiers.new("ND — Weighted Normal", 'WEIGHTED_NORMAL')
wn.weight = 100


def adjust_bevel_width(self, amount):
Expand Down

0 comments on commit 0849dfd

Please sign in to comment.