The simplex-noise tag has no wiki summary.
10
votes
1answer
448 views
Speeding up procedural texture generation
Recently I've begun working on a game that takes place in a procedurally generated solar system. After a bit of a learning curve (having neither worked with Scala, OpenGL 2 ES or Libgdx before), I ...
6
votes
2answers
471 views
Cave generation with Perlin worms
I'm currently trying to generate a Minecraft like voxel terrain with 3D Simplex Noise and also want to implement caves.
I found the method of Perlin Worms in this thread, which generates really nice ...
3
votes
1answer
289 views
Simplex Noise flat land and hills
I'm using the simplex noise to create Minecraft like terrain.
I can only achieve hills like this.
Does anyone know how to use simplex to make more dynamic landscapes?
0
votes
1answer
70 views
How to effectively check for object visibility prior to object creation?
I'm using pseudo-random noise to create a cube world a la Minecraft. So I've got my noise generators up and running, working great. Right now I'm just directly scaling the noise output to a height and ...
-1
votes
1answer
53 views
Simplex noise 3d map generation
I've just started learning 3d stuff and want to make minecraft clone, cause cubes are easy ( I hope ) :)
Arleady wrote chunk creation, menagement and displaying and want to generate nice terrain, but ...