5 lines
106 B
GDScript
5 lines
106 B
GDScript
extends Label
|
|
|
|
func _process(_delta: float) -> void:
|
|
text = "FPS: %d" % [Engine.get_frames_per_second()]
|