midori-school/fps.gd

6 lines
133 B
GDScript3
Raw Normal View History

2023-12-26 09:09:27 -07:00
extends Label
func _process(delta: float) -> void:
2024-01-26 14:16:00 -07:00
if !Global.mangohud:
set_text("FPS: " + str(Engine.get_frames_per_second()));