Tags
Creators
Details
0.3.0
Compatibility
Changes
-
Added
VecBlendedNoise— vectorizes the main terrain noise function, processing min-limit, max-limit, and main noise in parallel batches -
Added
VecShiftedNoise— vectorizes shifted noise used in biome and surface generation -
Added
VecEndIslands— vectorizes End island noise -
Added
VecAbs,VecMax,VecMin— density function trees using these operations now stay in the vectorized path instead of falling back to scalar -
Fixed
VectorizabilityAnalyzerto match density functions by runtime class name instead of serialization string names. This was the main bug causing nearly all functions to fall back to scalar mode -
Added
AtlasFastRandomusing Java 21'sL64X128MixRandomalgorithm, replacing vanilla's slower random source during chunk generation -
Added
RandomSourceMixinto hook vanilla random source usage intoAtlasFastRandom -
Added
EndBiomeCacheMixinto cache End biome lookups and reduce work during generation -
Removed
ChunkMapMixin,ChunkStatusMixin,MinecraftServerMixin,ServerChunkCacheMixin -
Removed
SIMDWarningMixinandNoiseChunkMixin, superseded by the updatedChunkNoiseSamplerMixin
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:xScpwf1m:flnP6RrI"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:xScpwf1m:flnP6RrI"
}

