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