mirror of
https://github.com/CrispyPin/ovr-utils.git
synced 2024-11-22 23:50:25 +01:00
9 lines
145 B
GDScript
9 lines
145 B
GDScript
extends Label
|
|
|
|
|
|
func _ready() -> void:
|
|
pass
|
|
|
|
func _process(delta: float) -> void:
|
|
if delta > 0:
|
|
text = "Overlay FPS: " + str(round(1/delta))
|