Tags
Creators
Details
2.0.1
Compatibility
Changes
Hey guys! Sorry for the long wait, I've been busy balancing my summer uni classes (finals soon btw) and my personal projects. This is a rather small update but it contains some optimizations and a few fixes. Forge contains more optimization because Neoforge already had it implemented on initial release.
Minor
- Better Dust Trails: Adjusted how dust gets pushed aside when you walk through it. It blends a bit better now and leaves a more natural looking trail.
Optimization
- Performance: Changed how the game calculates the distance between players/mobs and the dust. It takes less CPU power now, which should help keep your game running smoothly when there is a lot of dust on the screen.
- Config Caching: Cached particle gravity and bounce calculations on spawn rather than querying config files every tick.
- Faster Spatial Cleanup: Sped up position data cleanup so unused map data gets cleared out faster as you travel through the world. (every 60 ticks to 40 ticks)
Bugfixes
- Vertical Physics: Fixed an issue where dust only reacted to you walking. Dust will now properly push out of the way when you jump or fall through it.
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:bc9u3UPM:4QCY1BHa"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:bc9u3UPM:4QCY1BHa"
}

