I have terrain being generated in tiles all with dimensions of 400x400. How can I use perlin noise to make the terrains of each tile match up? The tiles appear as the player moves, not all at once, so calculating the entire width and height of the map is not an option.
- Make 400x400 perlin noise
- Save it.
- When you need to calculate next tile, load that image and get what you need to generate tile.
I have a Unity implementation of seamless tiling using Perlin noise. You can email me if you want the implementation. Also you can get the idea of how to generate a set of tiles using the Perlin noise and also control the frequency from my paper here: Procedural textures using tilings with Perlin Noise
My email address: shi.217@osu.edu
Unless you are a very talented programmer, sounds like this is the answer: Stitchscape