aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/LoadingScreen.gd
diff options
context:
space:
mode:
author BrickPi <49528459+BrickPi@users.noreply.github.com>2023-08-21 02:14:40 +0200
committer GitHub <noreply@github.com>2023-08-21 02:14:40 +0200
commitf59424ee1223bd509efdb2162b16415708a1ff6a (patch)
tree9c107da9e75e09231824f34b5583b3b1c0b03c13 /game/src/Game/LoadingScreen.gd
parent00426f3ab57e7a06a92f3aeac6466a403a933f80 (diff)
parentdfa73f753143adc408ff9479b8ccfb4a837c9588 (diff)
Merge pull request #149 from BrickPi/master
Finish Loading Screen (implements UI-24)
Diffstat (limited to 'game/src/Game/LoadingScreen.gd')
-rw-r--r--game/src/Game/LoadingScreen.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/game/src/Game/LoadingScreen.gd b/game/src/Game/LoadingScreen.gd
index d953d20..ae04c85 100644
--- a/game/src/Game/LoadingScreen.gd
+++ b/game/src/Game/LoadingScreen.gd
@@ -5,6 +5,7 @@ extends Control
@export_subgroup("Nodes")
@export var progress_bar: ProgressBar
@export var quote_label: Label
+@export var animation_player: AnimationPlayer
var thread: Thread
var quotes: PackedStringArray = []
@@ -42,6 +43,7 @@ func _ready():
quotes = quotes_file.split("\n",false)
if quotes.is_empty():
quotes = [""]
+ animation_player.play("loadingscreen_gear")
func _exit_tree():
if thread != null and thread.is_started():