Skip to content

Grabbing URLs for specific Threadbare scenes

Will Thompson edited this page Sep 2, 2026 · 3 revisions

In the web build, you will notice as you play the last release or any of the development versions that the URL changes as you play. It represents the current scene. So sharing that URL will send directly to the current scene in "dev mode": the game progress won't be persisted.

You can build such URLs yourself if you know the scene path. For example for the latest development build the base URL is:

https://play.threadbare.game/branches/endlessm/main/

Let's say you want a direct link to the Stealth Level of the Musician quest. From the Filesystem Dock, search stealth_level.tscn, then right click and Copy Path. The path is:

res://scenes/quests/lore_quests/quest_001/3_stealth_level/stealth_level.tscn

To build the direct link the format is: Base URL + # + Scene Path

So in this case it is:

https://play.threadbare.game/branches/endlessm/main/#res://scenes/quests/lore_quests/quest_001/3_stealth_level/stealth_level.tscn

Opening it you will see that the res://scene/ part is removed from the middle, and .tscn is removed from the end. So it also works without them. This works too:

https://play.threadbare.game/branches/endlessm/main/#quests/lore_quests/quest_001/3_stealth_level/stealth_level

Clone this wiki locally