1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-20 12:20:01 +00:00

added new -wsh: '^' which draws no borders between full floors

This commit is contained in:
Zeno Rogue 2019-01-28 21:41:43 +01:00
parent 29cf07920c
commit c3087ad540

View File

@ -3923,7 +3923,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
else if(patterns::whichShape == '6')
set_floor(shBigTriangle);
else if(patterns::whichShape == '9')
else if(among(patterns::whichShape, '9', '^'))
set_floor(shFullFloor);
#endif
@ -4305,6 +4305,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
draw_qfi(c, (*Vdp), darkena(fcol, fd0, 0x80), PPR::LAKELEV);
}
else {
if(patterns::whichShape == '^') poly_outline = darkena(fcol, fd, flooralpha);
draw_qfi(c, V, darkena(fcol, fd, flooralpha));
}