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