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