I wanted the make a procedural world generation in 2D in the same way 2D MInecraft or Terreria but i don’t know where to start.
If godot have classes or nodes that makes this easier or not
The most parts that puzzles me are: how would i be able to render a lot of sprites at the same time? how would i know where each block is at? and how would i be able to integrate physics or navigation
Any tips would be great
alright it’s worth a shot i’ll try that thank you, but say if i do run into performance problems what are tricks i can do to make the engine draw less? i know there’s a node that hides other nodes when they’re not visible
If you haven’t already you should look into how to use fractal noise to generate your maps. During map generation it looks at the dark and light spots on the noise and places tiles based on the values in that noise.
Here’s a tutorial that goes over it. This one goes over 2d which is what you want. 3d is pretty well the same except of course, you’re looking at 3d fractal chunks.