mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-13 09:30:20 +00:00
rv:: platformer:: now possible to change settings, better explanation in the slide
This commit is contained in:
parent
3d5cc67f63
commit
1efd0b4441
@ -13,6 +13,7 @@ g -- generate the current room (buggy)
|
|||||||
m -- see the map (toggle)
|
m -- see the map (toggle)
|
||||||
p -- pause (toggle)
|
p -- pause (toggle)
|
||||||
z -- screenshot menu
|
z -- screenshot menu
|
||||||
|
v -- HyperRogue settings
|
||||||
q -- quit
|
q -- quit
|
||||||
s -- save to platformer.lev
|
s -- save to platformer.lev
|
||||||
1 -- place a small block under the mouse
|
1 -- place a small block under the mouse
|
||||||
@ -704,6 +705,9 @@ void run() {
|
|||||||
dialog::add_key_action('m', [] {
|
dialog::add_key_action('m', [] {
|
||||||
map_on = !map_on;
|
map_on = !map_on;
|
||||||
});
|
});
|
||||||
|
dialog::add_key_action('v', [] {
|
||||||
|
pushScreen(showSettings);
|
||||||
|
});
|
||||||
dialog::add_key_action('p', [] {
|
dialog::add_key_action('p', [] {
|
||||||
paused = !paused;
|
paused = !paused;
|
||||||
});
|
});
|
||||||
@ -817,7 +821,7 @@ auto chk = arg::add3("-platformer", enable)
|
|||||||
if(s != "mixed") return;
|
if(s != "mixed") return;
|
||||||
v.push_back(tour::slide{
|
v.push_back(tour::slide{
|
||||||
"platformer", 10, tour::LEGAL::NONE | tour::QUICKSKIP | tour::QUICKGEO,
|
"platformer", 10, tour::LEGAL::NONE | tour::QUICKSKIP | tour::QUICKGEO,
|
||||||
"A non-Euclidean platformer. Press up/left/right to move the guy.\n"
|
"A non-Euclidean platformer.\n\nPress up/left/right to move the guy.\n\nM to see the map\n\nP to pause\n\nV to change HyperRogue settings.\n\nPress Q when you are done.\n"
|
||||||
,
|
,
|
||||||
[] (tour::presmode mode) {
|
[] (tour::presmode mode) {
|
||||||
slide_url(mode, 'y', "non-Euclidean platformer (YouTube)", "https://www.youtube.com/watch?v=eb2DhCcGH7U");
|
slide_url(mode, 'y', "non-Euclidean platformer (YouTube)", "https://www.youtube.com/watch?v=eb2DhCcGH7U");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user