5 lines
94 B
GDScript3
5 lines
94 B
GDScript3
|
|
extends Label
|
||
|
|
|
||
|
|
func _process(_delta):
|
||
|
|
set_text("FPS " + str(Engine.get_frames_per_second()))
|