mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-17 20:10:23 +03:00
Added Hide GUI Keybind (#62)
F1 to hide gui Also renamed the field for hiding the GUI to m_bDontRenderGui I would have named it m_bRenderGui and flipped the default values and checks but I assumed that changing the least amount of stuff would be desired.
This commit is contained in:
@@ -474,6 +474,10 @@ void Minecraft::tickInput()
|
||||
m_pLocalPlayer->drop(&inst);
|
||||
}
|
||||
}
|
||||
else if (keyCode == AKEYCODE_F1)
|
||||
{
|
||||
m_options.m_bDontRenderGui = !m_options.m_bDontRenderGui;
|
||||
}
|
||||
else if (keyCode == AKEYCODE_F3)
|
||||
{
|
||||
m_options.m_bDebugText = !m_options.m_bDebugText;
|
||||
|
||||
Reference in New Issue
Block a user