Exporting projects
Eventually, your project will reach the stage where you want to share it with the world. Exporting your project means converting it into a package that can be run by someone who doesn’t have the Godot editor. You can export your project to a number of popular platforms.
Godot supports the following target platforms:
- Android (mobile)
- iOS (mobile)
- Linux
- macOS
- HTML5 (web)
- Windows Desktop
- UWP (Windows Universal)
The requirements for exporting a project vary depending on the platform you are targeting. For example, to export to iOS, you must be running on a macOS computer with Xcode installed.
Each platform is unique, and some features of your game may not work on some platforms because of hardware limitations, screen size, or other factors. As an example, if you wanted to export the Coin Dash game for an Android phone, your player wouldn’t be able to move because the user wouldn’t have a keyboard! For...