Details
Add FX DigitalMatrix effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > DigitalMatrix
*without and with Camera Filter Pack FX DigitalMatrix
Property |
Range |
Default |
---|---|---|
Size | 0.4f to 5f | 1f |
Speed | -10f to 10f | 1f |
ColorR | -1f to 1f | -1f |
ColorG | -1f to 1f | 1f |
ColorB | -1f to 1f | -1f |
Manipulate FX DigitalMatrix by script
Example:
// Drag and Drop your Camera GameObject
// with the FX DigitalMatrix component
// to your current script on the CamFX_FX_DigitalMatrix field
public CameraFilterPack_FX_DigitalMatrix CamFX_FX_DigitalMatrix;
void Update()
{
CamFX_FX_DigitalMatrix.Size = 1f;
}