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