Global FPS

This commit is contained in:
2025-09-20 13:30:48 -07:00
parent f3bf3b694b
commit 8f41451bcb
7 changed files with 305 additions and 384 deletions

View File

@@ -24,9 +24,7 @@ public class CustomGamePlayer : MonoBehaviour
public GameObject pausePanel;
public Rigidbody2D rb;
public AudioSource backgroundMusic;
public TMP_Text fpsCounter;
private float nextUpdate;
private float fps;
public SpriteRenderer overlayRender;
private float lastMoveTime;
public GameObject berryParent;
@@ -417,12 +415,6 @@ public class CustomGamePlayer : MonoBehaviour
{
audio.pitch = speedyLeft > 0f ? 1.3f : 1f;
}
if (BazookaManager.Instance.GetSettingShowFPS() && Time.time > nextUpdate)
{
fps = 1f / Time.deltaTime;
fpsCounter.text = "FPS: " + Mathf.Round(fps);
nextUpdate = Time.time + 0.25f;
}
if (screenWidth != Camera.main.orthographicSize * 2f * Camera.main.aspect)
{
screenWidth = Camera.main.orthographicSize * 2f * Camera.main.aspect;