diff options
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(): |