The Camera that owns this filter.
Optionalquality: numberThe quality of the blur effect. Can be either 0 for Low Quality, 1 for Medium Quality or 2 for High Quality. Default 0.
Optionalx: numberThe horizontal offset of the blur effect. Default 2.
Optionaly: numberThe vertical offset of the blur effect. Default 2.
Optionalstrength: numberThe strength of the blur effect. Default 1.
Optionalcolor: numberThe color of the blur, as a hex value. Default 0xffffff.
Optionalsteps: numberThe number of steps to run the blur effect for. This value should always be an integer. Default 4.
Toggle this boolean to enable or disable this filter, without removing and adding it from the Game Object.
ReadonlyallowIf true, this filter will be permitted to draw to the base texture.
This can be unwanted if, for example, the filter doesn't actually
draw anything.
This is an internal flag used by the renderer. You should not modify this value directly.
A reference to the Camera that owns this filter.
The color of the blur as a number value.
The padding currently being used by this filter.
This is set and used during rendering using getPadding.
It is necessary for filters being used in an external list.
You should not modify this value directly.
The internal gl color array.
Whether this filter controller will be destroyed when the FilterList that owns it is destroyed. If you enable this, you must ensure that you clean up the filter controller at an appropriate time. This allows you to reuse a controller for multiple objects; this is not recommended unless you know what you're doing. It tends to work best with external filters.
Padding override. This is on by default. If this is set,
the filter will use this padding instead of calculating it.
Prefer using setPaddingOverride instead of modifying this directly.
The quality of the blur effect.
This can be:
0 for Low Quality 1 for Medium Quality 2 for High Quality
The higher the quality, the more complex shader is used
and the more processing time is spent on the GPU calculating
the final blur. This value is used in conjunction with the
steps value, as one has a direct impact on the other.
Keep this value as low as you can, while still achieving the desired effect you need for your game.
The ID of the RenderNode that this filter uses.
The number of steps to run the Blur effect for.
This value should always be an integer.
The higher the value, the smoother the blur, but at the cost of exponentially more gl operations.
Keep this to the lowest possible number you can have it, while still looking correct for your game.
The strength of the blur effect.
The horizontal offset of the blur effect.
The vertical offset of the blur effect.
Destroys this Controller and nulls any references it holds.
Returns the padding required for this filter,
and sets currentPadding to the result.
Most filters don't need extra padding,
but some might sample beyond the texture size, such as a blur.
The bounds are encoded as a Rectangle. To enlarge the bounds, the top and left values should be negative, and the bottom and right values should be positive.
Sets the active state of this filter.
A disabled filter will not be used.
true to enable this filter, or false to disable it.
Sets the padding override.
If this is set, the filter will use this padding instead of calculating them.
it Call setPaddingOverride(null) to clear the override.
Call setPaddingOverride() to set the padding to 0.
Optionalleft: numberThe top padding. Default 0.
Optionaltop: numberThe top padding. Default 0.
Optionalright: numberThe right padding. Default 0.
Optionalbottom: numberThe bottom padding. Default 0.
The Blur Filter Controller.
This filter controller manages a blur effect.
A Gaussian blur is the result of blurring an image by a Gaussian function. It is a widely used effect, typically to reduce image noise and reduce detail. The visual effect of this blurring technique is a smooth blur resembling that of viewing the image through a translucent screen, distinctly different from the bokeh effect produced by an out-of-focus lens or the shadow of an object under usual illumination.
A Blur effect is added to a Camera via the FilterList component: