Choose your operating system:
Windows
macOS
Linux
As of version 4.25, the Particle Effects Example project is deprecated. You will need to install version 4.24 or earlier of Unreal Engine to use it, or else update it to the latest version yourself.
The following Particle Systems are the snow effects that were created for this example. You are encouraged to open these up in Cascade to see how each effect was assembled.
For more information on Cascade and Particle Systems, please see the Particle Systems documentation.
Blizzard
Content Browser Location: Game/Effects/Particles/Snow/P_Blizzard
The Blizzard effect is a GPU Sprite Particle System comprised of a massive amount of small sprites using a Lit Translucent Material. The Material used on these snowflakes makes use of the Enable Responsive AA flag, available in the Translucency category of the Material Editor's Properties panel.
This property is useful for small translucent objects (in this case, snowflakes), as those will likely lose silhouette quality due to Unreal Engine's Temporal Antialiasing. Enable Responsive AA should only be used in these sorts of cases however, as it creates aliasing of the background.
Large unlit (i.e. Emissive) sprites generate widespread puffs of haze or fog, filling in the effect and adding a more complete sense of atmosphere.
The Blizzard Particle System also makes use of a Velocity Grid with low velocity vectors in order to slow down the snowflake sprites as they enter the volume. This slowing effect simulates a sense of drag on the particles, and also aids in collisions, keeping them from feeling quite as rigid. Vector Fields can most easily be visualized in Cascade via the Viewport menu, selecting View > Vector Fields.
The yellow box represents the Vector Field, while the red lines within it represent the vectors at each location within the volume.
If using the Collision (Scene Depth) module, you can boost the Radius Bias property to cause particles to appear to "glide around" a surface. This trick was used on the Blizzard Particle System to give the illusion of air influence around a surface.
Edge Blown Snow
Content Browser Location: Game/Effects/Particles/Snow/P_Blizzard_EdgeBlow
The Edge Blown Snow effect is a simple GPU Sprite Particle System that simulates snow blowing in through the gaps and crevices of the cavern, as well as around the entrance. It can be found near the holes in the cave ceiling. Collisions are primarily handled via a Collision (Scene Depth) module, which causes GPU particles to collide based on the Scene Depth Geometry Buffer.
This module allows the particles to interact with the world such that they collide with surfaces. They can also be made to stick to or slide along the surfaces of the level, depending on the settings of the Collision (Scene Depth) module.
Use depth based collision to better integrate FX with the world.
Snow particles collide and stick/slide along surfaces.
Snow Flare
The Snow Flare effect is a GPU Sprite Particle System that is a smaller, simplified version of the Blizzard particle system, used specifically in areas where light needs to interact with the snow and mist. You can see this effect around the statue outside the cave.
The key difference is that in the Blizzard effect, the mist particles were unlit. This means that they could not absorb the color of any lighting in the level and instead used the Emissive channel for color. In the case of the Snow Flare effect however, the mist particles use Lit Translucency in their Material, meaning they can pick up the color of lights. The reason for the separation is that Lit Translucency has an additional instruction cost in the shader, meaning that if all the snow mist particles used it, the scene would be doing a lot of processing just for the occasional color change, thus causing an inefficiency and quite possibly a performance hit.
Instead, this Snow Flare particle system is used as a localized version of the Blizzard effect, and is only placed where the mist particles need to respond to lighting. This is far more efficient than having all the mist particles react to lighting at all times.