5 lines
108 B
GDScript
5 lines
108 B
GDScript
|
|
extends Label
|
||
|
|
|
||
|
|
func _process(delta: float) -> void:
|
||
|
|
set_text("FPS " + str(Engine.get_frames_per_second()))
|