Added an option to always show the HUD while in Controller Mode, matching the legacy behaviour of LambdaControls. This option is enabled by default so that users migrating from LambdaControls will have a consistent experience.

This commit is contained in:
Karen/あけみ
2022-05-03 04:53:45 -07:00
parent 78c858b753
commit 1a0030a680
4 changed files with 15 additions and 6 deletions

View File

@@ -35,6 +35,7 @@ public class MidnightControlsConfig extends MidnightConfig {
@Entry public static boolean debug = false;
// HUD
@Entry public static boolean hudEnable = true;
@Entry public static boolean hudAlwaysShow = true; // Enabled by default so that users migrating from LambdaControls will have a consistent experience.
@Entry public static HudSide hudSide = HudSide.LEFT;
// Gameplay
@Entry public static boolean analogMovement = true;