1.1.0-1.19.4
Compatibility
Required content
Changes
This is a beta release. Please report issues on Github, as the 1.20 version will be based on this work.
This version entirely rewrites how the buffering works. The main goal was mod compatibility and logic improvements. Instead of buffering the entire UI x times per second, each UI component gets buffered on its own. Instead of having fixed updates, the UI part updates only on changes. Each UI part has the following settings:
- An on/off option, so parts can be fully excluded
- Max FPS. Set a custom fps cap for each part
- Force Blend tries some trickery to potentially get other mods to work correct
- Force Updates will re-render this UI part at the max FPS, instead of only during changes. This helps when mods play animations that Exordium doesn't know about.
The following UI parts get buffered by Exordium. Everything else like minimaps or currently the player list will render like without Exordium:
- Chat
- The debug overlay F3
- Hotbar
- Experience bar/Level
- Health/Food/Armor bar
- Scoreboard
From my testing, performance should be about the same or slightly higher, assuming no extra hud elements are present. Tested with Sodium+Iris and ImmediatelyFast(thanks for the help). Still not compatible with VulkanMod, and wasn't able to get Optifabric to work currently(switch to Sodium+Iris), but I assume it should work.
Full Changelog: https://github.com/tr7zw/Exordium/compare/1.0.3-1.19.4...1.1.0-1.19.4
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:DynYZEae:BDuZe3FM"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:DynYZEae:BDuZe3FM"
}

