1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-05 10:17:03 +00:00

manual-animation: keys , and . for zoom

This commit is contained in:
Zeno Rogue 2020-01-02 16:52:42 +01:00
parent 66e040bbc9
commit a5df7eb0dc

View File

@ -122,6 +122,9 @@ bool trailer_handleKey(int sym, int uni) {
if(keys_on) {
if(sym == ',') { vid.fov *= 1.1; mouseaim_sensitivity *= 1.1; println(hlog, "fov = ", vid.fov, " sens = ", mouseaim_sensitivity); }
if(sym == '.') { vid.fov /= 1.1; mouseaim_sensitivity /= 1.1; println(hlog, "fov = ", vid.fov, " sens = ", mouseaim_sensitivity); }
if(sym == 't') {
if(!saved.empty()) {
println(hlog, "frames = ", isize(saved));