The export is the point of the whole product: a Oryn project is a real Godot project, and you can take it and leave at any time. Export is not a paid tier feature — being able to build and export games is the core promise, and higher plans are about doing more of it, not about unlocking it.
What you get
Exporting downloads a .zip containing the editable Godot project — project files, scenes, scripts, and assets. Any unsaved changes from the in-browser Godot editor are synchronized before the archive is created, so the download matches what you were last looking at.
There is no proprietary format and no runtime that only Oryn can execute. Unzip it, open the folder in Godot, and it behaves like a project you wrote yourself — because structurally, it is one.
Continuing in Godot
Open the folder in Godot
Godot picks up project.godot and imports the assets on first open. The initial import pass can take a moment on an asset-heavy project.
Play it locally
Run the project before changing anything, so you have a known-good local baseline to compare against.
Set up your export presets
Web, desktop, and mobile targets each need their own export template and platform configuration in Godot. This is the step that turns a project into a distributable build.
Put it under version control
Once you are editing by hand, a Git repository is the safety net that Oryn's version history was providing.
Sharing a playable build
For feedback, sharing beats exporting. You can share a playable build directly, which gets your testers into the game in a browser with nothing to install — the shortest possible path between "I made a thing" and someone actually playing it.
Share early and share the small version. Feedback on a two-minute prototype is worth more than feedback on a finished game, because it can still change the design.
Shipping to a store
Storefronts are their own project: signing, store assets, age ratings, platform requirements, and testing on real hardware. Oryn gets you to a working Godot project that exports; the distribution work after that is standard Godot and standard platform process, and every Godot resource on the subject applies unchanged.