fps counter

This commit is contained in:
Haze Weathers 2025-12-10 15:55:29 -06:00
parent 3607ca7e2e
commit 3f2b7e3bd3
4 changed files with 31 additions and 0 deletions

9
globals/debug_overlay.gd Normal file
View file

@ -0,0 +1,9 @@
extends CanvasLayer
@export_group("Internal References")
@export var _fps_counter: Label
func _process(delta: float) -> void:
_fps_counter.text = str(Engine.get_frames_per_second())