Skip to content

Commit

Permalink
fixes bug in ngon routine
Browse files Browse the repository at this point in the history
  • Loading branch information
zeffii authored Dec 10, 2019
1 parent a512c2b commit 61deb2f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nodes/modifier_make/inset_special.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ def do_ngon(face, lv_idx, make_inner):
add_face([face_elements[j], face_elements[j+1], inner_elements[j+1], inner_elements[j]])

if make_inner:
add_face([idx[-1] for idx in out_faces])
new_insets.append([idx[-1] for idx in out_faces])
temp_face = [idx[-1] for idx in out_faces]
add_face(temp_face)
new_insets.append(temp_face)

return out_faces

Expand Down

0 comments on commit 61deb2f

Please sign in to comment.