1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-27 15:32:53 +00:00

dialog:: more intuitive rotation hotkeys

This commit is contained in:
Zeno Rogue 2023-08-15 17:08:41 +02:00
parent a5ada45164
commit 610d64d22a

View File

@ -1177,9 +1177,9 @@ EX namespace dialog {
ne.dialogflags |= dialogflags; ne.dialogflags |= dialogflags;
}); });
}; };
rot_but(0, 2, "rotate in XZ", 'x');
rot_but(1, 2, "rotate in YZ", 'y');
rot_but(0, 1, "rotate in XY", 'z'); rot_but(0, 1, "rotate in XY", 'z');
rot_but(0, 2, "rotate in XZ", 'y');
rot_but(1, 2, "rotate in YZ", 'x');
} }
addBoolItem("mouse control", dialogflags & sm::MOUSEAIM, 'm'); addBoolItem("mouse control", dialogflags & sm::MOUSEAIM, 'm');