How can I get particles to draw in front of game objects?

I have a dust storm particle that renders in my Unity game. For some reason, it will not draw the particles in front of other game objects. I’ve tried changing the layers and sorting method, still doesn’t work.

Attached is an imgur gif of the anomaly, what is seen in the editor is also seen in the game.

This involves customizing your own shader and change the line of “ZTest LEqual” to “ZTest Always”.

If you are using URP, just create a simple unlit transparent shader graph (you need to add a Vertex Color node and connect it to the color/alpha inputs of the master node, so the material color can be controlled by the particle system). Right click the master node and view generated code, edit ZTest as mentioned earlier and save it.