Details
Add FX Ascii effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > Ascii
*without and with Camera Filter Pack FX Ascii
Property |
Range |
Default |
---|---|---|
Value | 0f to 2f | 1f |
Fade | 0.01f to 1f | 1f |
Manipulate FX Ascii by script
Example:
// Drag and Drop your Camera GameObject
// with the FX Ascii component
// to your current script on the CamFX_FX_Ascii field
public CameraFilterPack_FX_Ascii CamFX_FX_Ascii;
void Update()
{
CamFX_FX_Ascii.Value = 1f;
}