FPS counter

This commit is contained in:
MaddoScientisto 2025-03-14 00:04:11 +01:00
commit d25696425b
6 changed files with 48 additions and 21 deletions

View file

@ -0,0 +1,11 @@
using Godot;
namespace Cirno.Scripts.Utils;
public partial class FpsCounterLabel : Label
{
public override void _Process(double delta)
{
this.Text = Engine.GetFramesPerSecond().ToString();
}
}