Details

Add Additive 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 > Additive

Note : this effect are not available with advanced Lightning. Because it's obsolete.

*without and with 2DxFX Additive


Property

Range

Default

_Alpha 0 to 1 1f

Manipulate Additive by script

Example:

// Drag and Drop your Sprite GameObject 
// with the Additive component 
// to your current script on the FX_Standard_Additive field 

public _2dxFX_Additive_Editor FX_Additive; 

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