Details
Add Blur effect to your Sprite Renderer and Unity UI Canvas Image.
Add it to the Sprite Renderer or Unity UI Canvas Image GameObject via the Components menu
2DxFX > Standard > Blur
4 Gradients is available in Advanced Lightning Mode. Via the Components menu
2DxFX > Advanced Lightning > Blur
Note : Advanced Lightning is not working with the Unity UI Canvas (UI Canvas don't use lightning)
*without and with 2DxFX Blur
Property |
Range |
Default |
---|---|---|
_Alpha | 0 to 1 | 1f |
Blur | 0.0f to 10f | 4.0f |
Manipulate Blur by script
Example:
// Drag and Drop your Sprite GameObject
// with the Blur component
// to your current script on the FX_Standard_Blur field
public _2dxFX_Blur_Editor FX_Blur;
void Update()
{
FX_Blur._Alpha = 1f;
}