enable fps counter

This commit is contained in:
Chipmunk 2023-05-20 14:37:22 -04:00
parent 6587ddab30
commit 10e5c53ecf

View file

@ -5,7 +5,7 @@ public class FPSCounter : MonoBehaviour
{
private void Awake()
{
base.enabled = false;
base.enabled = true;
if (base.enabled)
{
this.m_fps = (base.GetComponent(typeof(GUIText)) as GUIText);