[Bf-extensions-cvs] [8e1b4dd7] master: Archipack: support for bmesh bevel arguments changes in 2.90

Stephen Leger noreply at git.blender.org
Thu Sep 17 14:57:14 CEST 2020


Commit: 8e1b4dd71b376c46d28dcce41e46c734cc58b559
Author: Stephen Leger
Date:   Thu Sep 17 11:44:29 2020 +0200
Branches: master
https://developer.blender.org/rBA8e1b4dd71b376c46d28dcce41e46c734cc58b559

Archipack: support for bmesh bevel arguments changes in 2.90

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

M	archipack/__init__.py
M	archipack/archipack_floor.py
M	archipack/archipack_roof.py
M	archipack/bmesh_utils.py

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

diff --git a/archipack/__init__.py b/archipack/__init__.py
index 6c014756..0474cbd1 100644
--- a/archipack/__init__.py
+++ b/archipack/__init__.py
@@ -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',
diff --git a/archipack/archipack_floor.py b/archipack/archipack_floor.py
index 821c7c4b..6f0244be 100644
--- a/archipack/archipack_floor.py
+++ b/archipack/archipack_floor.py
@@ -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)
 
diff --git a/archipack/archipack_roof.py b/archipack/archipack_roof.py
index 59757c4f..8a9c8341 100644
--- a/archipack/archipack_roof.py
+++ b/archipack/archipack_roof.py
@@ -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)
 
diff --git a/archipack/bmesh_utils.py b/archipack/bmesh_utils.py
index 54805f7b..3c196bec 100644
--- a/archipack/bmesh_utils.py
+++ b/archipack/bmesh_utils.py
@@ -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)



More information about the Bf-extensions-cvs mailing list