allow configuration of 2d/3d noise in palettes

This commit is contained in:
dfsek
2021-01-11 14:37:56 -07:00
parent 623a4dea4f
commit 8a10a9807d
9 changed files with 38 additions and 24 deletions
@@ -10,7 +10,7 @@ public class SinglePalette<E> extends Palette<E> {
}
@Override
public E get(int i, int i1, int i2) {
public E get(int layer, double x, double y, double z) {
return item;
}
}