8 lines
154 B
GDScript3
Raw Normal View History

2024-01-18 22:35:17 +00:00
extends DebugLabel
2024-01-15 23:22:14 +00:00
func _ready():
%Ping.connect("changed", on_ping_changed)
func on_ping_changed(ping):
2024-01-18 22:35:17 +00:00
text = str(snapped(ping * 1000, 0.1)) + " ms"