Archive 17/01/2023.

Volumetric Rendering

NiteLordz

I have been looking thru the forums, and was wondering if anyone has attempted to create a volumetric renderer. I am interested in implementing the Horizon Dawn Volumetric Clouds system, and if anyone has a head start on it, would jump in on it, otherwise, would will start from scratch.

Thanks much

dragonCASTjosh

I think there has been a few experiments in the community on volumetric rendering but i dont think there is anything game ready. Once i start making progress on my long list of features i will eventually hit Volumetrics but likely not anytime soon. Once i get to it i will likely based my implementation upon http://www.frostbite.com/2015/08/physically-based-unified-volumetric-rendering-in-frostbite/

SirNate0

Any progress with this?

godan

For IOGRAM, I hacked together a material/shader combo that requires a box and a 3d texture. The shader renders the volume texture using some nice tricks. The advantage of this is that it fits in well with the existing render pipeline (i.e. you can easily control visibility/occlusion).

Also, I wrote some code to combine sequences of images in to a single 3d texture, and even modify the 3d texture directly.

Here are the sources: [1], [2]

original post: https://discourse.urho3d.io/t/volume-shader-for-3d-textures/2966

Bananaft

I’ve made a raymarching demo with some cool optimizations.

Horizon’s cloud system would be super cool to play with. Hovever, it is super expencive, as my favorite part from their paper suggests:

And both Horizon and Unigine are using either Temporal AA or some other form of reprojection to spread samples over time.