diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-12-24 19:23:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 19:23:18 +0100 |
commit | d26c990d9a5596a3ef3b32ba1cb0f99950cd6d34 (patch) | |
tree | 1b99c935438692bb2ebadeac412b990c82089b65 /game/src/Game/LoadingScreen.gd | |
parent | 50b0b935b0bf0724f40b5140aca85d1830a8b1b3 (diff) | |
parent | b6413251a866c76538869b84ed1c9b9852f7c507 (diff) |
Merge pull request #178 from Spartan322/add-menu-type-hints
Diffstat (limited to 'game/src/Game/LoadingScreen.gd')
-rw-r--r-- | game/src/Game/LoadingScreen.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/game/src/Game/LoadingScreen.gd b/game/src/Game/LoadingScreen.gd index 08cd2a8..c1bfdc6 100644 --- a/game/src/Game/LoadingScreen.gd +++ b/game/src/Game/LoadingScreen.gd @@ -22,14 +22,14 @@ func start_loading_screen(thread_safe_function : Callable) -> void: thread.start(thread_safe_function) -func try_update_loading_screen(percent_complete: float, quote_should_change = false): +func try_update_loading_screen(percent_complete: float, quote_should_change := false) -> void: # forces the function to behave as if deferred await get_tree().process_frame progress_bar.value = percent_complete if quote_should_change: quote_label.text = quotes[randi() % quotes.size()] -func _ready(): +func _ready() -> void: if Engine.is_editor_hint(): return thread = Thread.new() # FS-3, UI-30, UIFUN-35 @@ -39,6 +39,6 @@ func _ready(): quotes = [""] animation_player.play("loadingscreen_gear") -func _exit_tree(): +func _exit_tree() -> void: if thread != null and thread.is_started(): thread.wait_to_finish() |