Details
Add TV LED effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > TV > LED
*without and with Camera Filter Pack TV LED
Property |
Range |
Default |
---|---|---|
public | 0f to 1f | 5 |
Manipulate TV LED by script
Example:
// Drag and Drop your Camera GameObject
// with the TV LED component
// to your current script on the CamFX_TV_LED field
public CameraFilterPack_TV_LED CamFX_TV_LED;
void Update()
{
CamFX_TV_LED.public = 5;
}