It always mildly annoys me when a game says that it is all voxels, but clearly isn't, since the little cubes easily move off the voxel grid. Its just geometry moving around, like normal games, but modelled in little cubes, instead of being fully restricted to voxels. I would really like to see a fully voxel game, where all geometry is "rendered" to voxel space before being rendered to the screen, so that everything i…
Lexaloffle's Voxatron is what you're describing: https://www.lexaloffle.com/voxatron.php IMO the effect is less compelling than you might think.
Voxile: A ray-traced game made in its own engine and programming language
81–83 of 83 posts
Re: Voxile: A ray-traced game made in its own engine and programming language
#82Earlier quoted context omitted.
Any ideas how to increase the render distance way further? Because that's where I always get stuck. There are so many cool algorithms and ideas that I have like combining ray tracing with meshing and even like imposters for the distant chunks. But this is getting very complicated with contrees and raytracing/marching etc.
With raytracing having a far render distance is actually fairly cheap and simple compared to polygonal worlds (good looking LOD is hard). Some reasons why we don't have a super far render distance, in order of importance: The biggest is GPU memory. The octree that holds the world gets gigantic at large sizes. We'd have to swap parts out as the camera moves. We can do that but haven't gotten there. Noise: raytracing l…
Re: Voxile: A ray-traced game made in its own engine and programming language
#83Earlier quoted context omitted.
With raytracing having a far render distance is actually fairly cheap and simple compared to polygonal worlds (good looking LOD is hard). Some reasons why we don't have a super far render distance, in order of importance: The biggest is GPU memory. The octree that holds the world gets gigantic at large sizes. We'd have to swap parts out as the camera moves. We can do that but haven't gotten there. Noise: raytracing l…
Is it possible to fake a world curvature so that using a fog isn’t as necessary, as far items sink below the horizon?
But is generally a cool idea.
Fog is good too, though. It helps with a sense of scale, and it helps colors and distance noise not be too busy.