|
42 | 42 | Creates a PCK archive at [param path] for the specified [param preset]. |
43 | 43 | </description> |
44 | 44 | </method> |
| 45 | + <method name="export_pack_patch"> |
| 46 | + <return type="int" enum="Error" /> |
| 47 | + <param index="0" name="preset" type="EditorExportPreset" /> |
| 48 | + <param index="1" name="debug" type="bool" /> |
| 49 | + <param index="2" name="path" type="String" /> |
| 50 | + <param index="3" name="patches" type="PackedStringArray" default="PackedStringArray()" /> |
| 51 | + <param index="4" name="flags" type="int" enum="EditorExportPlatform.DebugFlags" is_bitfield="true" default="0" /> |
| 52 | + <description> |
| 53 | + Creates a patch PCK archive at [param path] for the specified [param preset], containing only the files that have changed since the last patch. |
| 54 | + [b]Note:[/b] [param patches] is an optional override of the set of patches defined in the export preset. When empty the patches defined in the export preset will be used instead. |
| 55 | + </description> |
| 56 | + </method> |
45 | 57 | <method name="export_project"> |
46 | 58 | <return type="int" enum="Error" /> |
47 | 59 | <param index="0" name="preset" type="EditorExportPreset" /> |
|
75 | 87 | Create a ZIP archive at [param path] for the specified [param preset]. |
76 | 88 | </description> |
77 | 89 | </method> |
| 90 | + <method name="export_zip_patch"> |
| 91 | + <return type="int" enum="Error" /> |
| 92 | + <param index="0" name="preset" type="EditorExportPreset" /> |
| 93 | + <param index="1" name="debug" type="bool" /> |
| 94 | + <param index="2" name="path" type="String" /> |
| 95 | + <param index="3" name="patches" type="PackedStringArray" default="PackedStringArray()" /> |
| 96 | + <param index="4" name="flags" type="int" enum="EditorExportPlatform.DebugFlags" is_bitfield="true" default="0" /> |
| 97 | + <description> |
| 98 | + Create a patch ZIP archive at [param path] for the specified [param preset], containing only the files that have changed since the last patch. |
| 99 | + [b]Note:[/b] [param patches] is an optional override of the set of patches defined in the export preset. When empty the patches defined in the export preset will be used instead. |
| 100 | + </description> |
| 101 | + </method> |
78 | 102 | <method name="find_export_template" qualifiers="const"> |
79 | 103 | <return type="Dictionary" /> |
80 | 104 | <param index="0" name="template_file_name" type="String" /> |
|
151 | 175 | If [param embed] is [code]true[/code], PCK content is appended to the end of [param path] file and return [Dictionary] additionally include following keys: [code]embedded_start: int[/code] (embedded PCK offset) and [code]embedded_size: int[/code] (embedded PCK size). |
152 | 176 | </description> |
153 | 177 | </method> |
| 178 | + <method name="save_pack_patch"> |
| 179 | + <return type="Dictionary" /> |
| 180 | + <param index="0" name="preset" type="EditorExportPreset" /> |
| 181 | + <param index="1" name="debug" type="bool" /> |
| 182 | + <param index="2" name="path" type="String" /> |
| 183 | + <description> |
| 184 | + Saves patch PCK archive and returns [Dictionary] with the following keys: [code]result: Error[/code], [code]so_files: Array[/code] (array of the shared/static objects which contains dictionaries with the following keys: [code]path: String[/code], [code]tags: PackedStringArray[/code], and [code]target_folder: String[/code]). |
| 185 | + </description> |
| 186 | + </method> |
154 | 187 | <method name="save_zip"> |
155 | 188 | <return type="Dictionary" /> |
156 | 189 | <param index="0" name="preset" type="EditorExportPreset" /> |
|
160 | 193 | Saves ZIP archive and returns [Dictionary] with the following keys: [code]result: Error[/code], [code]so_files: Array[/code] (array of the shared/static objects which contains dictionaries with the following keys: [code]path: String[/code], [code]tags: PackedStringArray[/code], and [code]target_folder: String[/code]). |
161 | 194 | </description> |
162 | 195 | </method> |
| 196 | + <method name="save_zip_patch"> |
| 197 | + <return type="Dictionary" /> |
| 198 | + <param index="0" name="preset" type="EditorExportPreset" /> |
| 199 | + <param index="1" name="debug" type="bool" /> |
| 200 | + <param index="2" name="path" type="String" /> |
| 201 | + <description> |
| 202 | + Saves patch ZIP archive and returns [Dictionary] with the following keys: [code]result: Error[/code], [code]so_files: Array[/code] (array of the shared/static objects which contains dictionaries with the following keys: [code]path: String[/code], [code]tags: PackedStringArray[/code], and [code]target_folder: String[/code]). |
| 203 | + </description> |
| 204 | + </method> |
163 | 205 | <method name="ssh_push_to_remote" qualifiers="const"> |
164 | 206 | <return type="int" enum="Error" /> |
165 | 207 | <param index="0" name="host" type="String" /> |
|
0 commit comments