Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeta-androcto <meta.androcto1@gmail.com>2019-08-20 04:51:51 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-08-20 04:51:51 +0300
commitb3e932726865d5766afaafa9b76774c73f25f5d5 (patch)
treefef0da91c387d7e8f68b58b5fd60d80a71f4d8b1 /archimesh
parenta1d16077aeb5a7d9d80656a70ae107e23744252c (diff)
archimesh/achm_room_maker: T68508 allow negative base value
Diffstat (limited to 'archimesh')
-rw-r--r--archimesh/achm_room_maker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archimesh/achm_room_maker.py b/archimesh/achm_room_maker.py
index 645311d2..7a59eee5 100644
--- a/archimesh/achm_room_maker.py
+++ b/archimesh/achm_room_maker.py
@@ -503,7 +503,7 @@ def shape_walls_and_create_children(myroom, tmp_mesh, update=False):
create_walls(rp, baseboardmesh, get_blendunits(rp.base_height), True)
set_normals(mybase, rp.inverse) # inside/outside room
- if rp.base_width > 0.0:
+ if rp.base_width:
set_modifier_solidify(mybase, get_blendunits(rp.base_width))
# Move to Top SOLIDIFY
movetotopsolidify(mybase)
@@ -1527,7 +1527,7 @@ class RoomProperties(PropertyGroup):
)
base_width: FloatProperty(
- name='Width', min=0.001, max=10,
+ name='Width', min=-10, max=10,
default=0.015, precision=3,
description='Baseboard width', update=update_room,
)