new PIXI.DisplacementFilter (sprite, scale) overrides
Name | Type | Attributes | Description |
---|---|---|---|
sprite |
PIXI.Sprite |
The sprite used for the displacement map. (make sure its added to the scene!) |
|
scale |
number |
<optional> |
The scale of the displacement |
Extends
Members
map PIXI.Texture
The texture used for the displacement map. Must be power of 2 sized texture.
scale PIXI.Point
scaleX, scaleY for displacements
Methods
apply (filterManager, input, output, clearMode) void overrides
Applies the filter.
Name | Type | Description |
---|---|---|
filterManager |
PIXI.FilterSystem |
The manager. |
input |
PIXI.RenderTexture |
The input target. |
output |
PIXI.RenderTexture |
The output target. |
clearMode |
PIXI.CLEAR_MODES |
clearMode. |
Inherited Properties
From class PIXI.Filter
autoFit boolean inherited
If enabled, PixiJS will fit the filter area into boundaries for better performance. Switch it off if it does not work for specific shader.
- Default Value:
- true
blendMode PIXI.BLEND_MODES inherited
Sets the blend mode of the filter.
- Default Value:
- PIXI.BLEND_MODES.NORMAL
enabled boolean inherited
If enabled is true the filter is applied, if false it will not.
legacy boolean readonly inherited
Legacy filters use position and uvs from attributes (set by filter system)
multisample PIXI.MSAA_QUALITY | null inherited
The samples override of the filter instance.
If set to null
, the sample count of the current render target is used.
- Default Value:
- PIXI.Filter.defaultMultisample
padding number inherited
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.
resolution number | null inherited
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.
- Default Value:
- PIXI.Filter.defaultResolution
state PIXI.State inherited
The WebGL state the filter requires to render.
From class PIXI.Shader
program PIXI.Program inherited
Program that the shader uses.
uniforms Dict<any> readonly inherited
Shader uniform values, shortcut for uniformGroup.uniforms
.