8 lines
116 B
GDScript3
Raw Normal View History

2024-01-18 23:35:17 +01:00
extends DebugLabel
2024-01-16 23:01:16 +01:00
func _process(_delta):
if Global.player == null:
return
2024-01-18 23:35:17 +01:00
text = str(Global.player.velocity)