Links
Tags
Creators
Details
All versions
2026Build1
Alpha
Canalize 2026Build15 months ago 244
Uploaded by
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Client and server
Changes
Canalize 2026Build1 — First Public Build
Core Features
- Overworld height expanded from 384 to 1808 blocks (Min Y: −64, Max Y: 1744)
- All heightmap calculations handled by a C++17 native library via JNI, completely bypassing the vanilla ChunkGenerator
Noise Algorithms
- Simplex noise (OS2S) as the base noise source
- Ridged FBM fractal for mountain skeleton generation
- Worley cellular noise blended at mountain peaks for realistic rock texture
- Domain Warping to simulate hydraulic erosion, carving valleys and riverbeds
smoothstepbiome interpolation to eliminate hard boundaries between ocean, plains, and mountains
Performance
- AVX2 SIMD instruction set for parallelized noise computation
- Stateless hash functions replacing
srand()/rand()— thread-safe with no race conditions
Requirements
- CPU with AVX2 support required
- Minecraft 1.21.1 + NeoForge 21.1.219
- Java 21
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:CcUWumzC:hQHzU1wJ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:CcUWumzC:hQHzU1wJ"
}

