Details

Add Hologram2 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 menu2DxFX > Standard > Hologram2

4 Gradients is available in Advanced Lightning Mode. Via the Components menu2DxFX > Advanced Lightning > Hologram2

Note : Advanced Lightning is not working with the Unity UI Canvas (UI Canvas don't use lightning)

*without and with 2DxFX Hologram2


Property

Range

Default

_Alpha 0 to 1 1f
Distortion 0 to 4 1.0f
Speed 0 to 3 1

Manipulate Hologram2 by script

Example:

// Drag and Drop your Sprite GameObject 
// with the Hologram2 component 
// to your current script on the FX_Standard_Hologram2 field 

public _2dxFX_Hologram2_Editor FX_Hologram2; 

void Update() 
{
	FX_Hologram2._Alpha =  1f;
}