Archipack: support for bmesh bevel arguments changes in 2.90

This commit is contained in:
stephen leger 2020-09-17 11:44:29 +02:00
parent 62b559204b
commit 8e1b4dd71b
Notes: blender-bot 2023-02-13 21:18:01 +01:00
Referenced by issue blender/blender#80396: Potential candidates for corrective releases
Referenced by issue blender/blender#80396, Potential candidates for corrective releases
4 changed files with 6 additions and 6 deletions

View File

@ -31,8 +31,8 @@ bl_info = {
'author': 's-leger',
'license': 'GPL',
'deps': '',
'version': (1, 2, 83),
'blender': (2, 80, 0),
'version': (1, 2, 84),
'blender': (2, 90, 0),
'location': 'View3D > Sidebar > Create > Archipack',
'warning': '',
'doc_url': 'https://github.com/s-leger/archipack/wiki',

View File

@ -338,7 +338,7 @@ class FloorGenerator(CutAblePolygon, CutAbleGenerator):
offset_type='OFFSET',
segments=1, # d.bevel_res
profile=0.5,
vertex_only=False,
# vertex_only=False,
clamp_overlap=False,
material=-1)

View File

@ -1867,7 +1867,7 @@ class RoofGenerator(CutAbleGenerator):
offset_type=offset_type,
segments=d.tile_bevel_segs,
profile=0.5,
vertex_only=False,
# vertex_only=False,
clamp_overlap=True,
material=-1)

View File

@ -215,7 +215,7 @@ class BmeshEdit():
offset_type='OFFSET',
segments=1,
profile=0.5,
vertex_only=False,
# vertex_only=False,
clamp_overlap=True,
material=-1,
use_selection=True):
@ -244,7 +244,7 @@ class BmeshEdit():
offset_type=offset_type,
segments=segments,
profile=profile,
vertex_only=vertex_only,
# vertex_only=vertex_only,
clamp_overlap=clamp_overlap,
material=material)