Final touches

This commit is contained in:
2024-06-12 17:51:29 +02:00
parent 9cfd9e0200
commit 965a56c7ad
8 changed files with 120 additions and 77 deletions

6
FPS.gd Normal file
View File

@@ -0,0 +1,6 @@
extends Label
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
var fps = Engine.get_frames_per_second()
text = "FPS: %d" % fps