mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
fixed unstable camera problems (actual_view_transform needs iso_inverse not ortho_inverse)
This commit is contained in:
parent
17c39c3ca2
commit
f57229134c
@ -1687,7 +1687,7 @@ EX void centerpc(ld aspd) {
|
||||
if(sl || vid.eye) T = T * zpush(cgi.SLEV[sl] - cgi.FLOOR + vid.eye);
|
||||
}
|
||||
#endif
|
||||
hyperpoint H = ortho_inverse(actual_view_transform) * tC0(T);
|
||||
hyperpoint H = iso_inverse(actual_view_transform) * tC0(T);
|
||||
ld R = (zero_d(GDIM, H) && !prod) ? 0 : hdist0(H);
|
||||
if(R < 1e-9) {
|
||||
// either already centered or direction unknown
|
||||
|
Loading…
Reference in New Issue
Block a user