Details
Add Retro Loading effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Retro > Loading
*without and with Camera Filter Pack Retro Loading
Property |
Range |
Default |
---|---|---|
Speed | 0.1f to 10f | 1f |
Manipulate Retro Loading by script
Example:
// Drag and Drop your Camera GameObject
// with the Retro Loading component
// to your current script on the CamFX_Retro_Loading field
public CameraFilterPack_Retro_Loading CamFX_Retro_Loading;
void Update()
{
CamFX_Retro_Loading.Speed = 1f;
}