Details

Add Drawing Crosshatch effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Drawing > Crosshatch

*without and with Camera Filter Pack Drawing Crosshatch


Property

Range

Default

public 0 to 1 2.0f

Manipulate Drawing Crosshatch by script

Example:

// Drag and Drop your Camera GameObject 
// with the Drawing Crosshatch component 
// to your current script on the CamFX_Drawing_Crosshatch field 

public CameraFilterPack_Drawing_Crosshatch CamFX_Drawing_Crosshatch; 

void Update() 
{
	CamFX_Drawing_Crosshatch.public =  2.0f;
}