Legacy Documentation: Version 5.0
Projector
Antialiasing

Image Effect Reference

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

This group handles all Render Texture-based fullscreen image postprocessing effects. They add a lot to the look and feel of your game without spending much time on artwork.

All image effects make use of Unity’s OnRenderImage function which any MonoBehavior attached to a camera can overwrite to accomplish a wide range of custom effects.

Image effects can be executed directly after the opaque pass or after opaque and transparent passes (default). The former behavior can very easily be acquired by adding the attribute ImageEffectOpaque to the OnRenderImage function of the effect in question. For an example of an effect doing this, have a look at the Edge Detection effect.

The scene used in above pages looks like this without any image effects applied:

Scene with no image postprocessing effects.
Scene with no image postprocessing effects.

Multiple image effects can be “stacked” on the same camera. Just add them and it will work.

Blur and Noise applied to the same camera.
Blur and Noise applied to the same camera.

The following pages describes the available image effects in greater detail.

Script access to Image Effects

To use Image Effects in your scripts you will need use the UnityStandardAssets library. In c# you should add:

// c#
using UnityStandardAssets.ImageEffects;

and in Javascript you should add:

//JS
import UnityStandardAssets.ImageEffects;
Projector
Antialiasing