Details
Add Weather Blizzard effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Weather > Blizzard
*without and with Camera Filter Pack Weather Blizzard
Property |
Range |
Default |
---|---|---|
_Speed | 0 to 2 | 1f |
_Size | 0.2f to 2 | 1f |
_Fade | 0 to 1 | 1f |
Manipulate Weather Blizzard by script
Example:
// Drag and Drop your Camera GameObject
// with the Weather Blizzard component
// to your current script on the CamFX_Weather_Blizzard field
public CameraFilterPack_Blizzard CamFX_Weather_Blizzard;
void Update()
{
CamFX_Weather_Blizzard._Speed = 1f;
}