9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 11:09:06 +00:00

Image maps working mostly

This commit is contained in:
cyberpwn
2021-11-12 16:45:44 -05:00
parent e1711b5d03
commit 617a797743
6 changed files with 44 additions and 8 deletions

View File

@@ -44,6 +44,6 @@ public class ImageNoise implements NoiseGenerator {
@Override
public double noise(double x, double y, double z) {
return noise(x, y, 0);
return noise(x, z + y);
}
}