Details
Add Alien Vision effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Alien > Vision
*without and with Camera Filter Pack Alien Vision
Property |
Range |
Default |
---|---|---|
Therma_Variation | 0f to 0.5f | 0.5f |
Speed | 0f to 1.0f | 0.5f |
Manipulate Alien Vision by script
Example:
// Drag and Drop your Camera GameObject
// with the Alien Vision component
// to your current script on the CamFX_Alien_Vision field
public CameraFilterPack_Alien_Vision CamFX_Alien_Vision;
void Update()
{
CamFX_Alien_Vision.Therma_Variation = 0.5f;
}