8 lines
131 B
GDScript3
Raw Normal View History

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