This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
Полезные советы
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Программирование
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Fast approXimate Anti-Aliasing (FXAA)

Fast approXimate Anti-Aliasing (FXAA) is the cheapest and simplest smoothing algorithm. It is used in post-processing the final image (applied to the whole scene after it has been rendered), and it blurs groups of pixels having sharp changes in brightness. FXAA smooths edges in all pixels on the screen, including those inside alpha-blended textures and those resulting from pixel shader effects. It is straightforward, doesn't have any complex dependencies, and is fast.

The weak point of this technique is that it blurs not only the edges but important details of the textures as well. As a result, the overall contrast of the image deteriorates.

FXAA works well with static images only, but you can combine it with TAA to provide a much better quality for dynamic scenes. FXAA provides anti-aliasing even at a zero intensity value, so this is a recommended setting to be used with TAA to improve image quality at practically no performance cost.

FXAA Settings#

FXAA settings are available for adjustment via the Render -> Antialiasing section of the Settings window, along with TAA and Supersampling settings. TAA Settings

Anti-Aliasing Settings
FXAA Toggles FXAA (post-process anti-aliasing) on and off.
Notice
Can be controlled by render_fxaa console command.
FXAA Intensity Intensity of the FXAA. It specifies the sample offset of the FXAA fragment. The higher the value, the more blurred the image is.
Notice
Can be controlled by render_fxaa_intensity console command.
Last update: 31.07.2020
Build: ()