jatek vk vege collider
This commit is contained in:
22
Assets/Scripts/fps.cs
Normal file
22
Assets/Scripts/fps.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using TMPro;
|
||||
using System.Threading;
|
||||
|
||||
public class fps : MonoBehaviour
|
||||
{
|
||||
public TMP_Text fpsText;
|
||||
[SerializeField] private float _hudRefreshRate = 1f;
|
||||
private float _timer;
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
if (Time.unscaledTime > _timer) {
|
||||
int fps = (int)(1f / Time.unscaledDeltaTime);
|
||||
fpsText.text = "FPS: " + fps;
|
||||
_timer = Time.unscaledTime + _hudRefreshRate;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user