From 54e22c5614ffe3a8a4a74fd3555edccf0c49ab23 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 1 Oct 2025 12:32:00 -0400 Subject: Show in-game when connection drops --- apworld/client/main.gd | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apworld/client/main.gd') diff --git a/apworld/client/main.gd b/apworld/client/main.gd index bbefc02..e1f9610 100644 --- a/apworld/client/main.gd +++ b/apworld/client/main.gd @@ -66,6 +66,11 @@ func _ready(): messages_instance.SCRIPT_rainbowText = runtime.load_script("rainbowText.gd") global.add_child(messages_instance) + var effects_script = runtime.load_script("effects.gd") + var effects_instance = effects_script.new() + effects_instance.name = "Effects" + global.add_child(effects_instance) + var textclient_script = runtime.load_script("textclient.gd") var textclient_instance = textclient_script.new() textclient_instance.name = "Textclient" -- cgit 1.4.1