12 lines
198 B
C#
12 lines
198 B
C#
using Godot;
|
|
|
|
namespace Zennysoft.Game.Ma;
|
|
|
|
public partial class FpsCounter : Label
|
|
{
|
|
public override void _Process(double delta)
|
|
{
|
|
this.Text = Engine.GetFramesPerSecond().ToString();
|
|
}
|
|
}
|