Details
Add FX Scan effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > Scan
*without and with Camera Filter Pack FX Scan
Property |
Range |
Default |
---|---|---|
Size | 0.001f to 0.100f | 0.025f |
Speed | 0f to 10f | 1f |
Manipulate FX Scan by script
Example:
// Drag and Drop your Camera GameObject
// with the FX Scan component
// to your current script on the CamFX_FX_Scan field
public CameraFilterPack_FX_Scan CamFX_FX_Scan;
void Update()
{
CamFX_FX_Scan.Size = 0.025f;
}