Version: 2019.2
Visión general del post-procesamiento
Ambient Occlusion

Anti-aliasing

The Anti-aliasing effect gives graphics a smoother appearance. Aliasing is an effect where lines appear jagged or have a “staircase” appearance (as displayed in the left-hand image below). This can happen if the graphics output device does not have a high enough resolution to display a straight line.

Using Anti-aliasing reduces the prominence of these jagged lines by surrounding them with intermediate shades of color. Although this reduces the jagged appearance of the lines, it also makes them blurrier.

The anti-aliasing algorithms are image-based. This is very useful when support for traditional multisampling is not available, such as the deferred rendering shading path, or HDR in the forward rendering path in Unity 5.5 or earlier. The Editor’s Quality settings window is home to these options.

The algorithms available in the Post Processing package are:

  • Fast Approximate Anti-aliasing (FXAA); a fast algorithm for mobile and platforms that don’t support motion vectors.
  • Subpixel Morphological Anti-aliasing (SMAA); a high-quality but slower algorithm for mobile and platforms that don’t support motion vectors.
  • Temporal Anti-aliasing (TAA); an advanced technique which requires motion vectors. Ideal for desktop and console platforms.

For further detailed information on Unity’s Anti-aliasing preferences, see the Anti-aliasing documentation in the Post-Processing package.


  • 2019–05–07 Page published

  • Nueva característica de 5.6

Visión general del post-procesamiento
Ambient Occlusion