Details

Add 3D Snow effect to your camera.

3D Snow use the depth of the scene. You must set the distance to fit with your scene. Use also the _FixDistance in order to fix the scene distance if the scene is big or small.

Add it to the Camera GameObject via the Components menuCameraFilterPack > 3D > Snow

*without and with Camera Filter Pack 3D Snow


Property

Range

Default

_FixDistance 0f to 100f 5f
Snow_Near -0.5f to 0.99f 0.08f
Snow_Far 0f to 1f 0.55f
Fade 0f to 1f 1f
Intensity 0f to 2f 1f
Size 0.4f to 2f 1f
Speed 0f to 0.5f 0.275f
SnowWithoutObject 0f to 1f 1
Myst 0f to 1f 0

Manipulate 3D Snow by script

Example:

// Drag and Drop your Camera GameObject 
// with the 3D Snow component 
// to your current script on the CamFX_3D_Snow field 

public CameraFilterPack_3D_Snow CamFX_3D_Snow; 

void Update() 
{
	CamFX_3D_Snow._FixDistance =  5f;
}