8 lines
131 B
GDScript3
Raw Normal View History

2024-01-18 22:35:17 +00:00
extends DebugLabel
2024-01-16 22:01:16 +00:00
2024-02-27 22:21:44 +00:00
func _process(_delta: float):
2024-01-16 22:01:16 +00:00
if Global.player == null:
return
2024-02-27 20:05:55 +00:00
text = str(Global.player.physics.velocity)