Skip to content

Commit

Permalink
fix(GUIConsole): default hotkey changed to tick (Back Quote)
Browse files Browse the repository at this point in the history
- F keys are mostly assigned to various things in browsers
  • Loading branch information
MrGadget1024 committed Dec 5, 2023
1 parent 7b55fe9 commit 65fc3db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Assets/Mirror/Components/GUIConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ public class GUIConsole : MonoBehaviour

// hotkey to show/hide at runtime for easier debugging
// (sometimes we need to temporarily hide/show it)
// => F12 makes sense. nobody can find ^ in other games.
public KeyCode hotKey = KeyCode.F12;
// Default is BackQuote, because F keys are already assigned in browsers
[Tooltip("Hotkey to show/hide the console at runtime\nBack Quote is usually on the left above Tab\nChange with caution - F keys are generally already taken in Browsers")]
public KeyCode hotKey = KeyCode.BackQuote;

// GUI
bool visible;
Expand Down

0 comments on commit 65fc3db

Please sign in to comment.