mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Add F9 "reload resources" hotkey to list of hotkeys in Shift menu
2.3's per-level assets feature also added a hotkey to reload the custom assets of the level you're currently editing in the editor, so you wouldn't have to re-load the level yourself. This hotkey is F9, but however, it hasn't been documented in the hotkey list brought up by pressing Shift, until now.
This commit is contained in:
parent
e9c62ea9a3
commit
b571fa0919
1 changed files with 8 additions and 7 deletions
|
@ -3463,14 +3463,15 @@ void editorrender()
|
|||
|
||||
if(ed.shiftmenu)
|
||||
{
|
||||
fillboxabs(0, 127,161+8,140,graphics.getRGB(64,64,64));
|
||||
FillRect(graphics.backBuffer, 0,128,160+8,140, graphics.getRGB(0,0,0));
|
||||
graphics.Print(4, 130, "F1: Change Tileset",164,164,164,false);
|
||||
graphics.Print(4, 140, "F2: Change Colour",164,164,164,false);
|
||||
graphics.Print(4, 150, "F3: Change Enemies",164,164,164,false);
|
||||
graphics.Print(4, 160, "F4: Enemy Bounds",164,164,164,false);
|
||||
graphics.Print(4, 170, "F5: Platform Bounds",164,164,164,false);
|
||||
fillboxabs(0, 117,171+8,140,graphics.getRGB(64,64,64));
|
||||
FillRect(graphics.backBuffer, 0,118,170+8,140, graphics.getRGB(0,0,0));
|
||||
graphics.Print(4, 120, "F1: Change Tileset",164,164,164,false);
|
||||
graphics.Print(4, 130, "F2: Change Colour",164,164,164,false);
|
||||
graphics.Print(4, 140, "F3: Change Enemies",164,164,164,false);
|
||||
graphics.Print(4, 150, "F4: Enemy Bounds",164,164,164,false);
|
||||
graphics.Print(4, 160, "F5: Platform Bounds",164,164,164,false);
|
||||
|
||||
graphics.Print(4, 180, "F9: Reload Resources",164,164,164,false);
|
||||
graphics.Print(4, 190, "F10: Direct Mode",164,164,164,false);
|
||||
|
||||
graphics.Print(4, 210, "W: Change Warp Dir",164,164,164,false);
|
||||
|
|
Loading…
Reference in a new issue