mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-06-22 08:14:07 +00:00
disabled heptamarkers blocking the view in 3D
This commit is contained in:
parent
ad4c219002
commit
2fbca25361
@ -5596,9 +5596,9 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
else if(wmblack) {
|
else if(wmblack) {
|
||||||
set_floor(cgi.shBFloor[ct6]);
|
set_floor(cgi.shBFloor[ct6]);
|
||||||
int rd = rosedist(c);
|
int rd = rosedist(c);
|
||||||
if(rd == 1)
|
if(WDIM == 2 && rd == 1)
|
||||||
queuepoly(Vf, cgi.shHeptaMarker, darkena(fcol, 0, 0x80));
|
queuepoly(Vf, cgi.shHeptaMarker, darkena(fcol, 0, 0x80));
|
||||||
else if(rd == 2)
|
else if(WDIM == 2 && rd == 2)
|
||||||
queuepoly(Vf, cgi.shHeptaMarker, darkena(fcol, 0, 0x40));
|
queuepoly(Vf, cgi.shHeptaMarker, darkena(fcol, 0, 0x40));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5968,7 +5968,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
set_floor(cgi.shMFloor);
|
set_floor(cgi.shMFloor);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(pseudohept(c) && (
|
if(WDIM == 2 && pseudohept(c) && (
|
||||||
c->land == laRedRock ||
|
c->land == laRedRock ||
|
||||||
vid.darkhepta ||
|
vid.darkhepta ||
|
||||||
(c->land == laClearing && !BITRUNCATED))) {
|
(c->land == laClearing && !BITRUNCATED))) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user