introducing short walls, so walls stay below stairs from levels on top

This commit is contained in:
Laura Klünder 2017-11-17 20:07:00 +01:00
parent fdce9a9ab1
commit 976c49c8ab
2 changed files with 45 additions and 6 deletions

View file

@ -147,6 +147,10 @@ class MapRenderer:
top=not walls_extended),
height=geoms.default_height, fill=FillAttribs('#aaaaaa'), category='walls')
for short_wall in geoms.short_walls:
engine.add_geometry(short_wall.filter(bottom=not not_full_levels),
height=geoms.default_height, fill=FillAttribs('#aaaaaa'), category='walls')
if walls_extended:
engine.add_geometry(geoms.walls_extended, fill=FillAttribs('#aaaaaa'), category='walls')