jatek vk vege collider

This commit is contained in:
2023-03-06 12:11:38 +01:00
parent 1cf316e00c
commit e1b689f6c5
8 changed files with 1407 additions and 55 deletions

22
Assets/Scripts/fps.cs Normal file
View 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;
}
}
}