Flopsy/scenes/hud/hud.gd

28 lines
766 B
GDScript

extends CanvasLayer
export var font_color : Color = Color(0, 0, 0)
# Called when the node enters the scene tree for the first time.
func _ready():
set_font_color(font_color)
func _process(delta):
$HUD_Items/ScoreLabel.text = str(GlobalState.coins)
$HUD_Items/PlayerItems/Key_Yellow.visible = GlobalState.keys['yellow']
func set_font_color(color: Color):
font_color = color
$HUD_Items/ScoreLabel.add_color_override("font_color", font_color)
func scene_fadeout():
$SceneTransition/Animation.play_backwards("Fade")
yield($SceneTransition/Animation, "animation_finished")
func hud_visible(value: bool):
$HUD_Items.visible = value
func scene_fadein():
$SceneTransition/Animation.play("Fade")
yield($SceneTransition/Animation, "animation_finished")