Initial commit

This commit is contained in:
2024-01-14 12:22:14 +01:00
commit 9b47e374c7
24 changed files with 529 additions and 0 deletions

8
ui/FPS.gd Normal file
View File

@ -0,0 +1,8 @@
extends Label
func _ready():
DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_DISABLED)
func _process(_delta):
var fps = Engine.get_frames_per_second()
text = str(fps)