Quick tips: How to import and use camera effects! (free)

1. Import the effect assets (free)

2. Select what you want to import

Remember always to import the Editor > ImageEffects folder. You'll need that if you want to manipulate effects by using code.

3. After importing, find the effect scripts folder

4. Drag & drop effect scripts to your main camera

5. Fiddle with the settings!

6. Extra: using code with effects!

Using effects via code is simple:
Remember to import the Editor > ImageEffects folder.

using UnityStandardAssets.ImageEffects;
void Update() {
	Camera.main.GetComponent<Twirl> ().center = Camera.main.ScreenToViewportPoint (new Vector3(Input.mousePosition.x, Input.mousePosition.y, 0f));
}

7. Result: