summaryrefslogtreecommitdiff
path: root/src/ui/hud/progress_bars/scripts/dash_progress.gd
blob: 32fb91a631b8c708e12e55ad45e6f5f920fd4abf (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_dash_progress", self, "_on_snake_dash_progress")
	progress.max_value = Global.POINTS_TO_DASH


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