From 9a6f3fa7b3a218a78e840c8c395b7924b5c1fe3b Mon Sep 17 00:00:00 2001 From: TheRealEmissions Date: Wed, 20 Mar 2024 21:42:35 +0000 Subject: [PATCH] Re-enabled resizing --- desktop/src/uk/ac/york/student/DesktopLauncher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/uk/ac/york/student/DesktopLauncher.java b/desktop/src/uk/ac/york/student/DesktopLauncher.java index f6239a1..37d0714 100644 --- a/desktop/src/uk/ac/york/student/DesktopLauncher.java +++ b/desktop/src/uk/ac/york/student/DesktopLauncher.java @@ -26,7 +26,7 @@ public static void main(String[] arg) { config.setHdpiMode(HdpiMode.Logical); // Convert coordinates to be logical (scaled to 1920x1080) config.setTitle("ENG1"); config.setIdleFPS(15); // Ensure game doesn't take up unnecessary resources when idle - config.setResizable(false); // Disabled until resizing is properly implemented + config.setResizable(true); config.setInitialBackgroundColor(Color.WHITE); new Lwjgl3Application(new GdxGame(), config); }