cooking again
This commit is contained in:
parent
b0b210a8be
commit
dafae35985
14 changed files with 218 additions and 10 deletions
15
uiman.gd
Normal file
15
uiman.gd
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
extends Control
|
||||
|
||||
@export var food_bar : ProgressBar
|
||||
@export var snake_manager : Node2D
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
food_bar.max_value = snake_manager.max_food
|
||||
food_bar.value = snake_manager.food
|
||||
Loading…
Add table
Add a link
Reference in a new issue