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