1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-17 22:25:12 +00:00

raycasting:: Euclidean

This commit is contained in:
Zeno Rogue
2019-10-22 10:52:17 +02:00
parent edbbb51135
commit ed5a86a1b8
2 changed files with 92 additions and 46 deletions

View File

@@ -7403,7 +7403,9 @@ EX void drawthemap() {
minf[m].name = princessgender() ? "Princess" : "Prince";
use_raycasting = false;
if(hyperbolic && pmodel == mdPerspective && !binarytiling)
if(WDIM == 3 && hyperbolic && pmodel == mdPerspective && !binarytiling)
use_raycasting = true;
if(WDIM == 3 && euclid && pmodel == mdPerspective && !binarytiling)
use_raycasting = true;
iinf[itSavedPrincess].name = minf[moPrincess].name;