mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-27 18:38:14 -05:00
Update #8 - Added ayunami's seamless fullscreen controls
When you enter fullscreen via F11 or video settings you can now use regular ESC again to pause and unpause the game and close your inventory and use CTRL as the sprint key without closing the tab. This greatly improves user experience when you are a new player and don't understand yet that regular vanilla ESC and CTRL+W messes up the game.
This commit is contained in:
@ -69,4 +69,12 @@ public class Display {
|
||||
return PlatformInput.wasResized();
|
||||
}
|
||||
|
||||
public static boolean isFullscreen() {
|
||||
return PlatformInput.isFullscreen();
|
||||
}
|
||||
|
||||
public static void toggleFullscreen() {
|
||||
PlatformInput.toggleFullscreen();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ public class EaglercraftVersion {
|
||||
/// Customize these to fit your fork:
|
||||
|
||||
public static final String projectForkName = "EaglercraftX";
|
||||
public static final String projectForkVersion = "u7";
|
||||
public static final String projectForkVersion = "u8";
|
||||
public static final String projectForkVendor = "lax1dude";
|
||||
|
||||
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
|
||||
@ -23,7 +23,7 @@ public class EaglercraftVersion {
|
||||
public static final String projectOriginName = "EaglercraftX";
|
||||
public static final String projectOriginAuthor = "lax1dude";
|
||||
public static final String projectOriginRevision = "1.8";
|
||||
public static final String projectOriginVersion = "u7";
|
||||
public static final String projectOriginVersion = "u8";
|
||||
|
||||
public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
|
||||
|
||||
|
Reference in New Issue
Block a user