1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00

ray:: raycaster_state now based on cgi_string, not geometry

This commit is contained in:
Zeno Rogue 2021-04-07 02:33:08 +02:00
parent 97ccc07be6
commit c4e260341f

View File

@ -242,14 +242,14 @@ tuple<
#if CAP_VR #if CAP_VR
int, vrhr::eEyes, int, vrhr::eEyes,
#endif #endif
eGeometry string
> raycaster_state() { > raycaster_state() {
return make_tuple( return make_tuple(
#if CAP_VR #if CAP_VR
vrhr::state, vrhr::state,
vrhr::eyes, vrhr::eyes,
#endif #endif
geometry cgi_string()
); );
} }