Details
Add Blend 2 Camera Blend effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blend 2 Camera > Blend
Property |
Range |
Default |
---|---|---|
BlendFX | 0f to 1f | 0.5f |
Manipulate Blend 2 Camera Blend by script
Example:
// Drag and Drop your Camera GameObject
// with the Blend 2 Camera Blend component
// to your current script on the CamFX_Blend 2 Camera_Blend field
public CameraFilterPack_Blend2Camera_Blend CamFX_Blend2Camera_Blend;
void Update()
{
CamFX_Blend2Camera_Blend.BlendFX = 0.5f;
}