Details

Add Special Bubble effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Special > Bubble

*without and with Camera Filter Pack Special Bubble


Property

Range

Default

X -4f to 4f 0.5f
Y -4f to 4f 0.5f
Rate 0f to 5f 1f

Manipulate Special Bubble by script

Example:

// Drag and Drop your Camera GameObject 
// with the Special Bubble component 
// to your current script on the CamFX_Special_Bubble field 

public CameraFilterPack_Special_Bubble CamFX_Special_Bubble; 

void Update() 
{
	CamFX_Special_Bubble.X =  0.5f;
}