Branch for signal refactoring, singleton bus.

This commit is contained in:
Henry 2025-12-14 20:32:23 +00:00
parent ab8643d093
commit d64504189a
10 changed files with 83 additions and 8 deletions

6
progress_bar.gd Normal file
View file

@ -0,0 +1,6 @@
extends TextureProgressBar
func _ready():
self.value = 0
var shield_tween = get_tree().create_tween()
shield_tween.tween_property(self, "value", 100, 3).set_trans(Tween.TRANS_LINEAR)