Improved network handling

This commit is contained in:
2024-01-16 00:22:14 +01:00
parent b885d70625
commit 8f0f3d9998
14 changed files with 178 additions and 126 deletions

5
ui/FPSLabel.gd Normal file
View File

@ -0,0 +1,5 @@
extends Label
func _process(_delta):
var fps = Engine.get_frames_per_second()
text = str(fps)