hotkey usability

resolve hotkey conflicts, fixes #2883
add/display existing in-game button hotkeys, fixes #2932
This commit is contained in:
Matthias Mailänder
2013-04-02 17:08:48 +02:00
parent 82b3126417
commit 3a3503201b
7 changed files with 30 additions and 24 deletions

View File

@@ -129,20 +129,20 @@ namespace OpenRA.GameRules
public class KeySettings
{
public string PauseKey = "f3";
public string CycleBaseKey = "backspace";
public string ToLastEventKey = "space";
public string ToSelectionKey = "home";
public string SellKey = "v";
public string PowerDownKey = "b";
public string RepairKey = "n";
public string PauseKey = "f9";
public string SellKey = "f10";
public string PowerDownKey = "f11";
public string RepairKey = "f12";
public string AttackMoveKey = "a";
public string StopKey = "s";
public string ScatterKey = "x";
public string StanceCycleKey = "z";
public string ScatterKey = "d";
public string DeployKey = "f";
public string StanceCycleKey = "g";
public string CycleTabsKey = "tab";
}