Tags
Creators
Details
20.1.10
Compatibility
Changes
X.XX.10 Update
Smart Particles - Performance & Visuals Update
Performance Overhaul
Reduced Lag Spikes (GC Optimization): Implemented Object Caching for internal heap arrays. The mod no longer allocates large arrays every tick, drastically reducing Garbage Collection pressure and eliminating micro-stutters.
Faster Culling (Single-Pass): Implemented Single-Pass Culling using an Iterator. Invisible or low-priority particles are now removed immediately during the initial scoring loop, often allowing the mod to skip the cleanup pass entirely.
Math Skipping: Added Frustum Math Skipping. Expensive vector calculations are now bypassed if a particle is already deemed "protected" (e.g., inside the rain radius), saving CPU cycles.
Visual Improvements
Better Weather Rendering: Implemented a dynamic protection threshold. Rain and thunder particles are now protected within a 23-block radius (up from 4 blocks) to prevent atmospheric effects from disappearing or flickering near screen edges.
Tweaked Default Protection: The default safety radius for close-up particles (like breaking blocks) has been slightly increased to 5 blocks (up from 4) to ensure consistency.
Bug Fixes
Rain Culling: Fixed an issue where frustum culling would remove active rain particles that were technically off-screen but part of the visible weather effect.
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:l8rWP4Tc:HfH0hvfy"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:l8rWP4Tc:HfH0hvfy"
}

