r3-next/fps.gd
2023-09-06 13:09:51 -07:00

5 lines
110 B
GDScript

extends Label
func _process(delta: float) -> void:
set_text("FPS: " + str(Engine.get_frames_per_second()));