Details
Add Vision Blood effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Vision > Blood
*without and with Camera Filter Pack Vision Blood
Property |
Range |
Default |
---|---|---|
HoleSize | 0.01f to 1f | 0.6f |
HoleSmooth | -1f to 1f | 0.3f |
Color1 | -2f to 2f | 0.2f |
Color2 | -2f to 2f | 0.9f |
Manipulate Vision Blood by script
Example:
// Drag and Drop your Camera GameObject
// with the Vision Blood component
// to your current script on the CamFX_Vision_Blood field
public CameraFilterPack_Vision_Blood CamFX_Vision_Blood;
void Update()
{
CamFX_Vision_Blood.HoleSize = 0.6f;
}