Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
1 answer
72 views

What is wrong with my voxel terrain generator. Terrain generator is not making seamless terrain

So as the title says, I'm making a voxel engine using rust and bevy and I am currently working on the terrain generation. I decided to use a heightmap that was made using simplex noise. This is how a ...
Kingdawnage's user avatar
0 votes
0 answers
91 views

faster way to iterate through a chunk of voxels in rust?

so i am making chunks of voxels (128x256x128) and need to iterate through those positions to first create the voxels: for x in 0..=width { for z in 0..=depth { let noise_value1 = noise.get(...
NewUser69420's user avatar