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