We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f0967 commit 32939c8Copy full SHA for 32939c8
MicroEngineerProject/MicroEngineer/MicroEngineerMod.cs
@@ -68,7 +68,7 @@ public void Update()
68
Manager.Instance.Update();
69
70
// Keyboard shortcut for opening the UI
71
- if (_enableKeybinding.Value &&
+ if ((_enableKeybinding?.Value ?? false) &&
72
(_keybind1.Value != KeyCode.None ? Input.GetKey(_keybind1.Value) : true) &&
73
(_keybind2.Value != KeyCode.None ? Input.GetKeyDown(_keybind2.Value) : true))
74
{
MicroEngineerProject/Other/Notes.cs
@@ -3,7 +3,6 @@
3
*
4
* TODO
5
* - update UITK for 0.1.5
6
- * - add setting to enable/disable keybinding
7
8
9
0 commit comments