summaryrefslogtreecommitdiff
path: root/boss_hp.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-09-20 22:12:44 +0200
committerDaniel Weipert <git@mail.dweipert.de>2024-09-20 22:12:44 +0200
commita38f65c261e9d7b23d046cb76b5aeedc05c4b54d (patch)
tree8cc96d41dc44b75ac1e9f2b95735af7c753a7c74 /boss_hp.gd
parent3fdb011ef62249a514a8eba2556cc9f6ea5ea477 (diff)
next commit
Diffstat (limited to 'boss_hp.gd')
-rw-r--r--boss_hp.gd10
1 files changed, 10 insertions, 0 deletions
diff --git a/boss_hp.gd b/boss_hp.gd
new file mode 100644
index 0000000..12f094f
--- /dev/null
+++ b/boss_hp.gd
@@ -0,0 +1,10 @@
+extends Control
+
+
+func set_full():
+ $Full.visible = true
+ $Empty.visible = false
+
+func set_empty():
+ $Full.visible = false
+ $Empty.visible = true