Capítulo 252 de 859

Chapter 252: FXAAPass

Core Idea

A pass for applying FXAA.

Code Examples

const fxaaPass = new FXAAPass();
composer.addPass( fxaaPass );
  • What it demonstrates: Typical usage of FXAAPass.

Reference Tables

Constructor

Signature
new FXAAPass()

Methods

MethodDescription
.setSize( width : number, height : number )Sets the size of the pass.

Key Takeaways

  1. FXAAPass extends: Pass → ShaderPass
  2. Key methods: setSize.

Connects To