diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-25 12:09:50 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-25 12:09:50 -0400 |
commit | 3f53502a5907ed1982d28a392c54331f0c1c2c42 (patch) | |
tree | 1dd087464d0fba1c35feaab0cee357fca6f2763c /apworld/client/collectable.gd | |
parent | fb220e1c75e72a536c19aa1283f905850a91cf44 (diff) | |
download | lingo2-archipelago-3f53502a5907ed1982d28a392c54331f0c1c2c42.tar.gz lingo2-archipelago-3f53502a5907ed1982d28a392c54331f0c1c2c42.tar.bz2 lingo2-archipelago-3f53502a5907ed1982d28a392c54331f0c1c2c42.zip |
Move the client into the apworld
Only works on source right now, not as an apworld.
Diffstat (limited to 'apworld/client/collectable.gd')
-rw-r--r-- | apworld/client/collectable.gd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apworld/client/collectable.gd b/apworld/client/collectable.gd new file mode 100644 index 0000000..4a17a2a --- /dev/null +++ b/apworld/client/collectable.gd | |||
@@ -0,0 +1,16 @@ | |||
1 | extends "res://scripts/nodes/collectable.gd" | ||
2 | |||
3 | |||
4 | func pickedUp(): | ||
5 | if unlock_type == "key": | ||
6 | var ap = global.get_node("Archipelago") | ||
7 | if ap.get_letter_behavior(unlock_key, level == 2) == ap.kLETTER_BEHAVIOR_VANILLA: | ||
8 | ap.keyboard.collect_local_letter(unlock_key, level) | ||
9 | else: | ||
10 | ap.keyboard.update_unlocks() | ||
11 | |||
12 | super.pickedUp() | ||
13 | |||
14 | |||
15 | func setScoutedText(text): | ||
16 | get_node("MeshInstance3D").mesh.text = text.replace(" ", "\n") | ||