Voxel Cone Tracing Experiment
Vorxel » Devlog
I'm working on implementing voxel cone tracing global illumination in my voxel engine. Here's an animation output by a prototype application that demonstrates voxel mip (as in mapmap) coordinates and levels within a frustum from a voxel's side. The algorithm (modified for adjustable lighting level of detail) will be used in voxel cone tracing.
Vorxel
Status | In development |
Author | Teknologicus |
Genre | Adventure |
Tags | Exploration, Open World, Voxel |
More posts
- Fixed bug with dynamic direct sunlight and level of detail41 days ago
- Dynamic direct sunlight working with level of detail44 days ago
- Improved dynamic direct sunlight49 days ago
- Dynamic direct sunlight50 days ago
- Previous folly and finally success57 days ago
- Rasterized triangles are evil!66 days ago
- Procedurally Generated Blocks (Video)69 days ago
- Fog is working again72 days ago
- Improved fragment/compute shading rates74 days ago
Comments
Log in with itch.io to leave a comment.
Interesting. you mip system is very intricate. But I think it would look better at a higher detail.
The level of detail equation in cone trace lighting (this is different than voxel level of detail) will be adjustable in game settings. Default will be set to yield best performance to light quality ratio.
I'm still working on my C++ prototype cone trace progressive frustum app (for lack of a better description) to get algorithm and math right so I don't have to struggle so much when writing the shader code based on the app's code.