diff options
Diffstat (limited to 'Archipelago/load.gd')
-rw-r--r-- | Archipelago/load.gd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Archipelago/load.gd b/Archipelago/load.gd index 052aa84..6860de7 100644 --- a/Archipelago/load.gd +++ b/Archipelago/load.gd | |||
@@ -324,6 +324,15 @@ func _load(): | |||
324 | apclient.mapFinishedLoading() | 324 | apclient.mapFinishedLoading() |
325 | 325 | ||
326 | 326 | ||
327 | func _load_user_textures(): | ||
328 | # We are using this function as a hook to process queued Iceland Traps | ||
329 | # because it happens after the environment gets set. | ||
330 | var effects_node = get_tree().get_root().get_node("Spatial/AP_Effects") | ||
331 | effects_node.activate() | ||
332 | |||
333 | ._load_user_textures() | ||
334 | |||
335 | |||
327 | func sort_by_link(a, b): | 336 | func sort_by_link(a, b): |
328 | return a["link"] < b["link"] | 337 | return a["link"] < b["link"] |
329 | 338 | ||