Page 1 of 1

Perlin noise and terrain generation[closed]

Posted: Wed Jul 18, 2018 12:08 am
by Pospos
How do you generate terrain using perlin noise (love.math.noise)?

Re: Perlin noise and terrain generation.

Posted: Wed Jul 18, 2018 12:11 am
by zorg
A good site i found before that explains it: https://www.redblobgames.com/maps/terrain-from-noise/

Re: Perlin noise and terrain generation.

Posted: Fri Jul 20, 2018 3:06 pm
by Xugro
Just last weekend I coded up a small value noise island generator. It still need fine tuning and post-processing, but the core algorithm (value noise) is complete. If you want you can take a peek at my code.

I followed this german tutorial: https://www.youtube.com/watch?v=xVYl8nYl_TI

Re: Perlin noise and terrain generation.

Posted: Sat Jul 21, 2018 12:10 am
by Pospos
Thank you!