optimize biome pipeline cache for 3 dimensions

This commit is contained in:
dfsek
2022-06-10 15:23:06 -07:00
parent 8f5d2c80f4
commit 33a39cb237
7 changed files with 105 additions and 4 deletions

View File

@@ -87,7 +87,17 @@ public class ColumnTest {
public int getMaxY() {
return max;
}
@Override
public int getX() {
return 0;
}
@Override
public int getZ() {
return 0;
}
@Override
public T get(int y) {
return p.apply(y);