8 lines
130 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
text = str(Global.player.global_position)