Details
Add EXTRA SHOWFPS effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > EXTRA > SHOWFPS
*without and with Camera Filter Pack EXTRA SHOWFPS
Property |
Range |
Default |
---|---|---|
Size | 8f to 42f | 12f |
Manipulate EXTRA SHOWFPS by script
Example:
// Drag and Drop your Camera GameObject
// with the EXTRA SHOWFPS component
// to your current script on the CamFX_EXTRA_SHOWFPS field
public CameraFilterPack_EXTRA_SHOWFPS CamFX_EXTRA_SHOWFPS;
void Update()
{
CamFX_EXTRA_SHOWFPS.Size = 12f;
}