6 lines
91 B
GDScript
6 lines
91 B
GDScript
extends Label
|
|
|
|
|
|
func _process(delta):
|
|
text = str(Engine.get_frames_per_second()) + " FPS"
|