I'm working on a tile based game and already got a generator working. But it doesn't seem to be smooth enough to look realistic. Here's the code I'm using: for (int i = 0; i < width; i++) { float y = ClassNoise.PerlinNoise1D(i, 2f, 4); for(int j = 2048+y;j<height;j++) { tiles[i][j] = new Tile(i,j); } } public class ClassNoise { public static float Noise(int x) { x = (x<<13) ^ x; return (float) ( 1
