mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 22:31:52 +00:00
fully implement resolution in BiomeExtrusionProvider
This commit is contained in:
+2
-3
@@ -86,9 +86,8 @@ public class BiomePipelineProvider implements BiomeProvider {
|
||||
z += mutator.noise(seed + 2, x, z) * noiseAmp;
|
||||
|
||||
|
||||
x = FastMath.floorDiv(x, resolution);
|
||||
|
||||
z = FastMath.floorDiv(z, resolution);
|
||||
x /= resolution;
|
||||
z /= resolution;
|
||||
|
||||
int fdX = FastMath.floorDiv(x, pipeline.getSize());
|
||||
int fdZ = FastMath.floorDiv(z, pipeline.getSize());
|
||||
|
||||
Reference in New Issue
Block a user