Tagged Questions
2
votes
1answer
222 views
Making efficeint voxel engines using “chunks”
Concept
I'm currently looking in to how voxel engines work with a view to possibly making one myself.
I see a lot of stuff like this ...
...
2
votes
2answers
715 views
Sparse Voxel Octrees which parts on GPU or CPU?
I'm currently doing research into building my own voxel engine and found a lot of articles mentioning SVOs as the best mechanism. I just wanted to know that I understood the algorithm correctly, ...
5
votes
1answer
492 views
Merging adjacent cubes into large ones
I am currently working on a basic minecraft like game.
I have a list of coordinates using which i render instances of a cube model.
To optimize my rendering, i need to merge similar adjacent cubes ...