API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceBlurFilterOptions

@codexo/exojs / rendering / stable

Construction-time options for a BlurFilter.

2
props
0
methods
0
events
Import
import { BlurFilterOptions } from '@codexo/exojs'

Construction-time options for a BlurFilter.

Properties2
quality?: number
Upper bound on the taps one sweep may take per side, as a cost cap. Omit it and the tap count follows strength on its own, which is the usual case; set it to trade smoothness for texture fetches on a weak device. Capping does not shorten the blur: the taps still span the full kernel, so a cap well below the derived count widens their spacing and can show as banding. The ceiling is 32 either way.
strength?: number
Gaussian standard deviation in LOGICAL units - unchanged by the display's pixel ratio. The same quantity CSS blur() and Pixi's strength take, so a value carried over from either produces the same blur here. Default 2.
Source