
Fluorium
Fluorium is a client-side performance optimization mod for Minecraft 1.21.5 built on Fabric. Its main goal is to improve game performance without altering gameplay. Fluorium uses **Entity Culling** to skip rendering entities that are not visible to the pl
Links
Tags
Creators
Details
1.2
Compatibility
Changes
š Fluorium v1.2 ā Performance Update & Fixes
What's new
- Added entity frustum culling system to skip rendering entities outside the camera's view
- Implemented view cone check for more accurate visibility control
- Optimized internal logic to reduce CPU usage during rendering
- Improved code structure and cleaned up redundant logic
Bug Fixes
- Fixed a crash when entity or player reference was null
- Fixed a broken conditional in the culling engine that prevented correct visibility checks
- Removed leftover debug code that could cause random behavior
Notes
- This version is still client-side only
- Compatible with Minecraft 1.21.5 using Fabric
- Safe to use in modpacks and multiplayer
GitHub Repository: https://github.com/CassaBlanca00/fluorine
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:JcVLrMJw:h9BLmFRt"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:JcVLrMJw:h9BLmFRt"
}
