Optional
strength: numberThe strength of the blur filter.
Optional
quality: numberThe quality of the blur filter.
Optional
resolution: numberThe resolution of the blur filter.
Optional
kernelSize: numberThe kernelSize of the blur filter.Options: 5, 7, 9, 11, 13, 15.
If enabled, PixiJS will fit the filter area into boundaries for better performance. Switch it off if it does not work for specific shader.
true
If enabled is true the filter is applied, if false it will not.
Readonly
legacyLegacy filters use position and uvs from attributes (set by filter system)
The samples override of the filter instance.
If set to null
, the sample count of the current render target is used.
PIXI.Filter.defaultMultisample
The padding of the filter. Some filters require extra space to breath such as a blur. Increasing this will add extra width and height to the bounds of the object that the filter is applied to.
Program that the shader uses.
The WebGL state the filter requires to render.
Static
SOURCE_Used for caching shader IDs.
Static
defaultDefault filter samples for any filter.
PIXI.MSAA_QUALITY.NONE
Static
defaultDefault filter resolution for any filter.
Sets the blendmode of the filter
PIXI.BLEND_MODES.NORMAL
Sets the strength of both the blurX and blurY properties simultaneously
2
Sets the strength of the blurX property
2
Sets the strength of the blurY property
2
Sets the number of passes for blur. More passes means higher quality bluring.
1
If set to true the edge of the target will be clamped
false
The resolution of the filter. Setting this to be lower will lower the quality but
increase the performance of the filter.
If set to null
or 0
, the resolution of the current render target is used.
PIXI.Filter.defaultResolution
Static
defaultThe default fragment shader source
Static
defaultThe default vertex shader source
Applies the filter.
The manager.
The input target.
The output target.
How to clear
Static
fromA short hand function to create a shader based of a vertex and fragment shader.
Optional
vertexSrc: stringThe source of the vertex shader.
Optional
fragmentSrc: stringThe source of the fragment shader.
Optional
uniforms: Dict<any>Custom uniforms to use to augment the built-in ones.
A shiny new PixiJS shader!
Generated using TypeDoc
The BlurFilter applies a Gaussian blur to an object.
The strength of the blur can be set for the x-axis and y-axis separately.
Memberof
PIXI