diff options
Diffstat (limited to 'apworld/client/main.gd')
-rw-r--r-- | apworld/client/main.gd | 5 |
1 files changed, 5 insertions, 0 deletions
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(): | |||
66 | messages_instance.SCRIPT_rainbowText = runtime.load_script("rainbowText.gd") | 66 | messages_instance.SCRIPT_rainbowText = runtime.load_script("rainbowText.gd") |
67 | global.add_child(messages_instance) | 67 | global.add_child(messages_instance) |
68 | 68 | ||
69 | var effects_script = runtime.load_script("effects.gd") | ||
70 | var effects_instance = effects_script.new() | ||
71 | effects_instance.name = "Effects" | ||
72 | global.add_child(effects_instance) | ||
73 | |||
69 | var textclient_script = runtime.load_script("textclient.gd") | 74 | var textclient_script = runtime.load_script("textclient.gd") |
70 | var textclient_instance = textclient_script.new() | 75 | var textclient_instance = textclient_script.new() |
71 | textclient_instance.name = "Textclient" | 76 | textclient_instance.name = "Textclient" |