fps counter
This commit is contained in:
parent
3607ca7e2e
commit
3f2b7e3bd3
4 changed files with 31 additions and 0 deletions
9
globals/debug_overlay.gd
Normal file
9
globals/debug_overlay.gd
Normal 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())
|
||||
Loading…
Add table
Add a link
Reference in a new issue