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 detail4 days ago
- Dynamic direct sunlight working with level of detail7 days ago
- Improved dynamic direct sunlight12 days ago
- Dynamic direct sunlight13 days ago
- Previous folly and finally success20 days ago
- Rasterized triangles are evil!29 days ago
- Procedurally Generated Blocks (Video)32 days ago
- Fog is working again35 days ago
- Improved fragment/compute shading rates37 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.