1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-17 10:08:29 +02:00

Add being able to use Shift+W to change warp dir backwards

A minor convenience, but a convenience is a convenience.
This commit is contained in:
Misa 2021-08-22 20:51:51 -07:00
parent d2153aee87
commit 3947949ebb

View File

@ -4716,6 +4716,12 @@ void editorinput(void)
ed.switch_enemy(true);
ed.keydelay=6;
}
if (key.keymap[SDLK_w])
{
ed.switch_warpdir(true);
graphics.backgrounddrawn = false;
ed.keydelay = 6;
}
if (up_pressed || down_pressed || left_pressed || right_pressed)
{