summaryrefslogtreecommitdiff
path: root/src/ui/hud/progress_bars/scripts/growth_progress.gd
blob: 4efce10f8587f8956e2e5114c5200f4043f0d710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extends HBoxContainer

onready var progress: TextureProgress = $Progress


func _ready():
	Event.connect("snake_growth_progress", self, "_on_snake_growth_progress")
	progress.max_value = Global.POINTS_TO_GROW


func _on_snake_growth_progress(_progress: int) -> void:
	progress.value = _progress