1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Add default param value to EditorExportPlatform::get_forced_export_files

Add default parameter value to a new parameter added in 4.5 to `EditorExportPlatform::get_forced_export_files` so we can avoid breaking compatibility for GDScript.
This commit is contained in:
Raul Santos
2025-08-16 03:23:30 +02:00
parent e67074d0ab
commit 702bbb3eab
2 changed files with 2 additions and 2 deletions

View File

@@ -121,7 +121,7 @@
</method>
<method name="get_forced_export_files" qualifiers="static">
<return type="PackedStringArray" />
<param index="0" name="preset" type="EditorExportPreset" />
<param index="0" name="preset" type="EditorExportPreset" default="null" />
<description>
Returns array of core file names that always should be exported regardless of preset config.
</description>