Skip to content

Commit a907b23

Browse files
authored
Merge pull request #10822 from Calinou/exporting-link-class-reference
Link to class reference for each platform that can be exported to
2 parents 9924a69 + c4c6d35 commit a907b23

File tree

6 files changed

+44
-8
lines changed

6 files changed

+44
-8
lines changed

tutorials/export/exporting_for_android.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Download and install the Android SDK.
3939
- Android SDK Command-line Tools (latest)
4040

4141
- Ensure that the `NDK and CMake are installed and configured <https://developer.android.com/studio/projects/install-ndk>`__.
42-
42+
4343
- CMake version 3.10.2.4988404
4444
- NDK version r23c (23.2.8568313)
4545

@@ -61,8 +61,8 @@ Download and install the Android SDK.
6161
Setting it up in Godot
6262
----------------------
6363

64-
Enter the Editor Settings screen (under the Godot tab for macOS, or the Editor tab
65-
for other platforms). This screen contains the editor settings for the user
64+
Enter the Editor Settings screen (under the Godot tab for macOS, or the Editor tab
65+
for other platforms). This screen contains the editor settings for the user
6666
account in the computer (it's independent of the project).
6767

6868
.. image:: img/editorsettings.png
@@ -186,3 +186,9 @@ the export menu.
186186
- ``GODOT_ANDROID_KEYSTORE_RELEASE_USER``
187187
* - Options / Keystore / Release Password
188188
- ``GODOT_ANDROID_KEYSTORE_RELEASE_PASSWORD``
189+
190+
Export options
191+
--------------
192+
193+
You can find a full list of export options available in the
194+
:ref:`class_EditorExportPlatformAndroid` class reference.

tutorials/export/exporting_for_ios.rst

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,18 +136,18 @@ xcode-select points at wrong SDK location
136136
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
137137

138138
xcode-select is a tool that comes with Xcode and among other things points at iOS SDKs on your Mac.
139-
If you have Xcode installed, opened it, agreed to the license agreement, and installed the command line tools,
140-
xcode-select should point at the right location for the iPhone SDK.
139+
If you have Xcode installed, opened it, agreed to the license agreement, and installed the command line tools,
140+
xcode-select should point at the right location for the iPhone SDK.
141141
If it somehow doesn't, Godot will fail exporting to iOS with an error that may look like this:
142142

143143
::
144144

145145
MSB3073: The command ""clang" <LOTS OF PATHS AND COMMAND LINE ARGUMENTS HERE>
146146
"/Library/Developer/CommandLineTools/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk"" exited with code 1.
147147

148-
In this case, Godot is trying to find the ``Platforms`` folder containing the iPhone SDK inside the
149-
``/Library/Developer/CommandLineTools/`` folder, but the ``Platforms`` folder with the iPhone SDK is
150-
actually located under ``/Applications/Xcode.app/Contents/Developer``. To verify this, you can open
148+
In this case, Godot is trying to find the ``Platforms`` folder containing the iPhone SDK inside the
149+
``/Library/Developer/CommandLineTools/`` folder, but the ``Platforms`` folder with the iPhone SDK is
150+
actually located under ``/Applications/Xcode.app/Contents/Developer``. To verify this, you can open
151151
up Terminal and run the following command to see what xcode-select points at:
152152

153153
::
@@ -161,3 +161,9 @@ To fix xcode-select pointing at a wrong location, enter this command in Terminal
161161
sudo xcode-select -switch /Applications/Xcode.app
162162

163163
After running this command, Godot should be able to successfully export to iOS.
164+
165+
Export options
166+
--------------
167+
168+
You can find a full list of export options available in the
169+
:ref:`class_EditorExportPlatformIOS` class reference.

tutorials/export/exporting_for_linux.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,9 @@ the export menu.
3232
- Environment variable
3333
* - Encryption / Encryption Key
3434
- ``GODOT_SCRIPT_ENCRYPTION_KEY``
35+
36+
Export options
37+
--------------
38+
39+
You can find a full list of export options available in the
40+
:ref:`class_EditorExportPlatformLinuxBSD` class reference.

tutorials/export/exporting_for_macos.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,3 +251,9 @@ the export menu.
251251
- ``GODOT_MACOS_NOTARIZATION_APPLE_ID_NAME``
252252
* - Options / Notarization / Apple ID Password
253253
- ``GODOT_MACOS_NOTARIZATION_APPLE_ID_PASSWORD``
254+
255+
Export options
256+
--------------
257+
258+
You can find a full list of export options available in the
259+
:ref:`class_EditorExportPlatformMacOS` class reference.

tutorials/export/exporting_for_web.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,3 +445,9 @@ the export menu.
445445
- Environment variable
446446
* - Encryption / Encryption Key
447447
- ``GODOT_SCRIPT_ENCRYPTION_KEY``
448+
449+
Export options
450+
--------------
451+
452+
You can find a full list of export options available in the
453+
:ref:`class_EditorExportPlatformWeb` class reference.

tutorials/export/exporting_for_windows.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,9 @@ the export menu.
7676
- ``GODOT_WINDOWS_CODESIGN_IDENTITY``
7777
* - Options / Codesign / Password
7878
- ``GODOT_WINDOWS_CODESIGN_PASSWORD``
79+
80+
Export options
81+
--------------
82+
83+
You can find a full list of export options available in the
84+
:ref:`class_EditorExportPlatformWindows` class reference.

0 commit comments

Comments
 (0)