1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-15 18:40:10 +00:00

'no_darken' mode

This commit is contained in:
Zeno Rogue 2024-08-21 19:19:22 +02:00
parent 3da69ed1f5
commit 4fb1324ea3

View File

@ -4095,8 +4095,11 @@ EX color_t transcolor(cell *c, cell *c2, color_t wcol) {
return 0;
}
EX bool no_darken = false;
// how much should be the d-th wall darkened in 3D
EX int get_darkval(cell *c, int d) {
if(no_darken) return 0;
if(mhybrid) {
return d >= c->type - 2 ? 4 : 0;
}