8 lines
142 B
GDScript3
8 lines
142 B
GDScript3
|
extends Label
|
||
|
|
||
|
func _ready():
|
||
|
%Ping.connect("changed", on_ping_changed)
|
||
|
|
||
|
func on_ping_changed(ping):
|
||
|
text = str(snapped(ping * 1000, 0.01))
|