1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-21 13:28:05 +00:00

improvements to ASCII items & monsters: PC movement animated on radar; movement is animated; available in 3D graphical modes

This commit is contained in:
Zeno Rogue
2021-04-15 15:26:32 +02:00
parent 2884ae17bc
commit a3add19eba
3 changed files with 153 additions and 126 deletions

View File

@@ -1305,6 +1305,11 @@ EX bool gmodekeys(int sym, int uni) {
}
else {
if(NUMBERKEY == '5') { vid.wallmode = vid.wallmode == 5 ? 4 : 5; }
else if(NUMBERKEY == '8') {
if(vid.monmode == 0) vid.monmode = 1;
else if(vid.monmode == 1) vid.monmode = 3;
else vid.monmode = 0;
}
else return false;
return true;
}