1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 12:47:10 +00:00

initial implementation of VR

This commit is contained in:
Zeno Rogue
2020-11-19 18:20:06 +01:00
parent 4444fa6bf1
commit 0de8ce9a10
16 changed files with 1315 additions and 49 deletions

View File

@@ -76,6 +76,9 @@ bool need_many_cell_types() {
/** is the raycaster available? */
EX bool available() {
#if CAP_VR
if(vrhr::state) return false; /* not implemented */
#endif
if(noGUI) return false;
if(!vid.usingGL) return false;
if(GDIM == 2) return false;