summaryrefslogtreecommitdiff
path: root/lwjgl3/src/main/java/coffee
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2026-03-01 12:54:31 -0800
committerElizabeth Alexander Hunt <me@liz.coffee>2026-03-01 12:54:47 -0800
commit242b32050feff1d7f047e52d46daadd3ec682c14 (patch)
tree6207a3f350946ae3b1c2764b2bb9321473f6bfaa /lwjgl3/src/main/java/coffee
parentc491b5cb08972ffc041fa0b968810373b9ed79a3 (diff)
downloaddyl-242b32050feff1d7f047e52d46daadd3ec682c14.tar.gz
dyl-242b32050feff1d7f047e52d46daadd3ec682c14.zip
Adding animations n stuff.
Diffstat (limited to 'lwjgl3/src/main/java/coffee')
-rw-r--r--lwjgl3/src/main/java/coffee/liz/dyl/lwjgl3/Lwjgl3Launcher.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/lwjgl3/src/main/java/coffee/liz/dyl/lwjgl3/Lwjgl3Launcher.java b/lwjgl3/src/main/java/coffee/liz/dyl/lwjgl3/Lwjgl3Launcher.java
index 7f59aca..3c2990b 100644
--- a/lwjgl3/src/main/java/coffee/liz/dyl/lwjgl3/Lwjgl3Launcher.java
+++ b/lwjgl3/src/main/java/coffee/liz/dyl/lwjgl3/Lwjgl3Launcher.java
@@ -26,6 +26,7 @@ public class Lwjgl3Launcher {
//// useful for testing performance, but can also be very stressful to some hardware.
//// You may also need to configure GPU drivers to fully disable Vsync; this can cause screen tearing.
+ configuration.setDecorated(false);
configuration.setWindowedMode(1024, 1024);
//// You can change these files; they are in lwjgl3/src/main/resources/ .
//// They can also be loaded from the root of assets/ .
@@ -39,7 +40,7 @@ public class Lwjgl3Launcher {
//// You can choose to add the following line and the mentioned dependency if you want; they
//// are not intended for games that use GL30 (which is compatibility with OpenGL ES 3.0).
//// Know that it might not work well in some cases.
-// configuration.setOpenGLEmulation(Lwjgl3ApplicationConfiguration.GLEmulation.ANGLE_GLES20, 0, 0);
+ configuration.setOpenGLEmulation(Lwjgl3ApplicationConfiguration.GLEmulation.ANGLE_GLES20, 0, 0);
return configuration;
}