|
4 | 4 | Export preset configuration. |
5 | 5 | </brief_description> |
6 | 6 | <description> |
7 | | - Export preset configuration. Instances of [EditorExportPreset] by editor UI and intended to be used a read-only configuration passed to the [EditorExportPlatform] methods when exporting the project. |
| 7 | + Represents the configuration of an export preset, as created by the editor's export dialog. An [EditorExportPreset] instance is intended to be used a read-only configuration passed to the [EditorExportPlatform] methods when exporting the project. |
8 | 8 | </description> |
9 | 9 | <tutorials> |
10 | 10 | </tutorials> |
11 | 11 | <methods> |
12 | 12 | <method name="are_advanced_options_enabled" qualifiers="const"> |
13 | 13 | <return type="bool" /> |
14 | 14 | <description> |
15 | | - Returns [code]true[/code] if "Advanced" toggle is enabled in the export dialog. |
| 15 | + Returns [code]true[/code] if the "Advanced" toggle is enabled in the export dialog. |
16 | 16 | </description> |
17 | 17 | </method> |
18 | 18 | <method name="get_custom_features" qualifiers="const"> |
19 | 19 | <return type="String" /> |
20 | 20 | <description> |
21 | | - Returns string with a comma separated list of custom features. |
| 21 | + Returns a comma-separated list of custom features added to this preset, as a string. See [url=$DOCS_URL/tutorials/export/feature_tags.html]Feature tags[/url] in the documentation for more information. |
22 | 22 | </description> |
23 | 23 | </method> |
24 | 24 | <method name="get_customized_files" qualifiers="const"> |
25 | 25 | <return type="Dictionary" /> |
26 | 26 | <description> |
27 | | - Returns [Dictionary] of files selected in the "Resources" tab of the export dialog. Dictionary keys are file names and values are export mode - [code]"strip"[/code], [code]"keep"[/code], or [code]"remove"[/code]. See also [method get_file_export_mode]. |
| 27 | + Returns a dictionary of files selected in the "Resources" tab of the export dialog. The dictionary's keys are file paths, and its values are the corresponding export modes: [code]"strip"[/code], [code]"keep"[/code], or [code]"remove"[/code]. See also [method get_file_export_mode]. |
28 | 28 | </description> |
29 | 29 | </method> |
30 | 30 | <method name="get_customized_files_count" qualifiers="const"> |
31 | 31 | <return type="int" /> |
32 | 32 | <description> |
33 | | - Returns number of files selected in the "Resources" tab of the export dialog. |
| 33 | + Returns the number of files selected in the "Resources" tab of the export dialog. |
34 | 34 | </description> |
35 | 35 | </method> |
36 | 36 | <method name="get_encrypt_directory" qualifiers="const"> |
|
118 | 118 | <method name="get_preset_name" qualifiers="const"> |
119 | 119 | <return type="String" /> |
120 | 120 | <description> |
121 | | - Returns export preset name. |
| 121 | + Returns this export preset's name. |
122 | 122 | </description> |
123 | 123 | </method> |
124 | 124 | <method name="get_project_setting"> |
|
131 | 131 | <method name="get_script_export_mode" qualifiers="const"> |
132 | 132 | <return type="int" /> |
133 | 133 | <description> |
134 | | - Returns script export mode. |
| 134 | + Returns the export mode used by GDScript files. [code]0[/code] for "Text", [code]1[/code] for "Binary tokens", and [code]2[/code] for "Compressed binary tokens (smaller files)". |
135 | 135 | </description> |
136 | 136 | </method> |
137 | 137 | <method name="get_version" qualifiers="const"> |
|
154 | 154 | <return type="bool" /> |
155 | 155 | <param index="0" name="path" type="String" /> |
156 | 156 | <description> |
157 | | - Returns [code]true[/code] if specified file is exported. |
| 157 | + Returns [code]true[/code] if the file at the specified [param path] will be exported. |
158 | 158 | </description> |
159 | 159 | </method> |
160 | 160 | <method name="is_dedicated_server" qualifiers="const"> |
161 | 161 | <return type="bool" /> |
162 | 162 | <description> |
163 | | - Returns [code]true[/code] if dedicated server export mode is selected in the export dialog. |
| 163 | + Returns [code]true[/code] if the dedicated server export mode is selected in the export dialog. |
164 | 164 | </description> |
165 | 165 | </method> |
166 | 166 | <method name="is_runnable" qualifiers="const"> |
167 | 167 | <return type="bool" /> |
168 | 168 | <description> |
169 | | - Returns [code]true[/code] if "Runnable" toggle is enabled in the export dialog. |
| 169 | + Returns [code]true[/code] if the "Runnable" toggle is enabled in the export dialog. |
170 | 170 | </description> |
171 | 171 | </method> |
172 | 172 | </methods> |
|
0 commit comments