diff options
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 |
commit | f59424ee1223bd509efdb2162b16415708a1ff6a (patch) | |
tree | 9c107da9e75e09231824f34b5583b3b1c0b03c13 /game/src/Game/LoadingScreen.gd | |
parent | 00426f3ab57e7a06a92f3aeac6466a403a933f80 (diff) | |
parent | dfa73f753143adc408ff9479b8ccfb4a837c9588 (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.gd | 2 |
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(): |