Update drone and level scenes with new shapes, connections, and scripts. Add mouse interaction events for director drone. Include new level 2 & 3 scenes with various elements and components.

This commit is contained in:
Dan 2024-05-09 18:43:38 +01:00
parent 491395e6b9
commit 7009695327
238 changed files with 4275 additions and 23 deletions

View file

@ -9,6 +9,7 @@ var last_update : float = 0
@onready var help_text_items = help_text_container.get_children()
@onready var level_text_label = get_node("%LevelText")
@onready var level_timer_label = get_node("%LevelTimer")
@onready var par_text_label = get_node("%ParText")
func _ready():
@ -42,4 +43,7 @@ func show_help_text(label: String):
item.show()
func update_level_text(text: String):
level_text_label.text = text
level_text_label.text = text
func update_par_text(text: String):
par_text_label.text = text