elfnor / mesh_maze

Blender add-on to generate a maze on any mesh
GNU General Public License v3.0
192 stars 31 forks source link

Updated mesh_maze.py to be Blender 2.9+ compatible #6

Closed MetalMantis closed 4 years ago

MetalMantis commented 4 years ago

Since the bevel param "vertex_only" was removed and replaced with "affect" in Blender 2.9, it made line 181 in mesh_maze.py incompatible with 2.9. I have changed the line profile=0.5, vertex_only=0, to profile=,0.5, affect='EDGES'. This fixes the issue and makes the addon usable again. I don't know if "EDGES" has to be capitalized but it was in the Blender Python API. I have very little coding experience and just figured this out through mostly trial and error. It was a simple fix.

elfnor commented 4 years ago

Awesome, thanks for this