13 lines
384 B
GDScript
13 lines
384 B
GDScript
extends Control
|
|
@onready var health = $VBoxContainer/HBoxContainer/MarginContainer/Health
|
|
@onready var coins = $VBoxContainer/HBoxContainer/MarginContainer2/Coins
|
|
|
|
func _ready():
|
|
coinsUpdate(GameManager.coinCollectedTotal)
|
|
healthUpdate(GameManager.player.health)
|
|
|
|
func healthUpdate(amt):
|
|
health.text = "Health : "+str(amt)
|
|
func coinsUpdate(amt):
|
|
coins.text = "Coins : "+str(amt)
|