How can I setup unshaded (volumetric clouds post-process effect) shaders to be completely opaque with no transparency.

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By samm

I am trying to lean how to implement a volumetric cloud shader on a mesh using ray marching technique. The result however is a cloud that is not entirely opaque where its supposed to be (especially when inbside the Box mesh/Cloud Bounds).
Hence the clouds have no density/thickness to them no matter the change in the ray marching parameters. An implementation of this (the tutorial I was following in Unity has very thick clouds that you cant see through.

I’ve tried the render_modes but I’ve gotten no where. Any help would be appreciated. (Also still a learner).

:bust_in_silhouette: Reply From: samm

Turns out I had two post processing effects (atmosphere & volumetric clouds) with the same rendering priority of 0 interfering with each other. So raising the render priority of the Clouds material fixed this.