Details
Add FX Dot_Circle effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > Dot_Circle
*without and with Camera Filter Pack FX Dot_Circle
Property |
Range |
Default |
---|---|---|
Value | 4 to 32 | 7.0f |
Manipulate FX Dot_Circle by script
Example:
// Drag and Drop your Camera GameObject
// with the FX Dot_Circle component
// to your current script on the CamFX_FX_Dot_Circle field
public CameraFilterPack_FX_Dot_Circle CamFX_FX_Dot_Circle;
void Update()
{
CamFX_FX_Dot_Circle.Value = 7.0f;
}