cirnogodot/Scripts/Utils/FpsCounterLabel.cs
2025-03-14 00:04:15 +01:00

11 lines
No EOL
217 B
C#

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