You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current behaviour of GUI move allows using arrow keys and WASD to move. However, the following actions are not possible:
Mining
Placing blocks
Activating/deactivating keybinds
Hitting entities
Using projectiles
Using buttons
Doors
Firework rockets
etc.
With a GUI minimize feature, it will be possible to play Minecraft as normal, with the active GUI minimized (not visible).
How This Can Be Implemented (Pseudocode)
There can be a keybind that, when pressed, will first check the following conditions:
if (GUIisactive) {
if (GUIisnotminimized) {
GUI.minimize(true);
HUD.updateGUIMinimizationStatus("Minimized");
} else {
GUI.minimize(false);
HUD.updateGUIMinimizationStatus("Maximized");
}
} else {
chat.display("There is currently no active GUI to minimize.");
}
### Beforesubmittingasuggestion
- [X] Thisfeaturedoesn't already exist in the client. (I have checked every module and their settings on the **latest dev build**)
- [X] Thiswasn't already suggested. (I have searched suggestions on GitHub and read the FAQ)
The text was updated successfully, but these errors were encountered:
Describe the feature
Current Behaviour of GUI Move
The current behaviour of GUI move allows using arrow keys and WASD to move. However, the following actions are not possible:
With a GUI minimize feature, it will be possible to play Minecraft as normal, with the active GUI minimized (not visible).
How This Can Be Implemented (Pseudocode)
There can be a keybind that, when pressed, will first check the following conditions:
The text was updated successfully, but these errors were encountered: