Expand description
Climate sampler for nether world generation.
Uses the compiled nether density functions from steel-registry. The nether’s noise router is much simpler than the overworld — only temperature and vegetation are real density functions; all other climate parameters are constant 0.
The nether uses legacy_random_source=true which means noise generators are
created with Java’s java.util.Random (LCG) instead of Xoroshiro, and
temperature/vegetation use hardcoded parameters (-7, [1.0, 1.0]) via
NormalNoise.createLegacyNetherBiome(). The shift (offset) noise is effectively
zeroed with params (0, [0.0]). See RandomState.java:55-76.
Structs§
- Nether
Climate Sampler - Climate sampler for the nether using compiled density functions.