Version: 5.3 (switch to 5.4b)
Writing Image Effects
Блум (Bloom)

Antialiasing

The Antialiasing as a post processing effect offers a set of algorithms designed to give a smoother appearance to graphics. When two areas of different colour adjoin in an image, the shape of the pixels can form a very distinctive “staircase” along the boundary. This effect is known as aliasing and hence antialiasing refers to any measure which reduces the effect.

The scene on the left is rendered without antialiasing while the one on the right shows the effect of the FXAA1PresetB algorithm
The scene on the left is rendered without antialiasing while the one on the right shows the effect of the FXAA1PresetB algorithm

The antialiasing algorithms are image based, which is very useful for deferred rendering where traditional multisampling (as used by Quality Settings) is not properly supported - for example, when using Deferred Shading or HDR rendering.

The algorithms currently supported are NVIDIA’s FXAA, FXAA II, FXAA III (tweakable and console optimized), simpler edge blurs (NFAA, SSAA) that blur only local edges and an adaption of the DLAA algorithm that also addresses long edges. SSAA is the fastest technique, followed by NFAA, FXAAII, FXAA II, DLAA and the the other FXAAs. Typically, the quality of antialiasing trades off against the speed of the algorithm but there may be situations where the choice of algorithm makes little difference.

For those especially interested in console deployment, the optimized FXAA III implementation offers the best tradeoff between quality and performance and can furthermore be tweaked towards sharper or blurrier looks.

As with the other image effects, you must have the Standard Assets Effects package installed before it becomes available.

Свойства

Свойство: Функция:
AA Technique Алгоритм, который будет использоваться.

Аппаратная поддержка

Для данного эффекта требуется видеокарта с поддержкой Shader Model 3. Сверьтесь со страницей аппаратные возможности графики и её эмуляция для более детального ознакомления со списком совместимого железа.

Writing Image Effects
Блум (Bloom)