8 lines
116 B
GDScript
8 lines
116 B
GDScript
extends DebugLabel
|
|
|
|
func _process(_delta):
|
|
if Global.player == null:
|
|
return
|
|
|
|
text = str(Global.player.velocity)
|