8 lines
118 B
GDScript3
8 lines
118 B
GDScript3
|
extends Label
|
||
|
|
||
|
func _process(_delta):
|
||
|
if Global.player == null:
|
||
|
return
|
||
|
|
||
|
text = str(Global.player.global_position)
|