diff options
| author | Elizabeth Alexander Hunt <me@liz.coffee> | 2026-03-01 12:54:31 -0800 |
|---|---|---|
| committer | Elizabeth Alexander Hunt <me@liz.coffee> | 2026-03-01 12:54:47 -0800 |
| commit | 242b32050feff1d7f047e52d46daadd3ec682c14 (patch) | |
| tree | 6207a3f350946ae3b1c2764b2bb9321473f6bfaa /lwjgl3/src | |
| parent | c491b5cb08972ffc041fa0b968810373b9ed79a3 (diff) | |
| download | dyl-242b32050feff1d7f047e52d46daadd3ec682c14.tar.gz dyl-242b32050feff1d7f047e52d46daadd3ec682c14.zip | |
Adding animations n stuff.
Diffstat (limited to 'lwjgl3/src')
| -rw-r--r-- | lwjgl3/src/main/java/coffee/liz/dyl/lwjgl3/Lwjgl3Launcher.java | 3 |
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; } |
